Skip to content

Hello World

Basic Hello World

print "Hello, World!";

With Variables

let greeting = "Hello";
let target = "World";
print "#{greeting}, #{target}!";

With Function

fn say_hello(name) {
    print "Hello, #{name}!";
}

say_hello("World");
say_hello("CacaoLang");

Interactive

let name = input("What is your name? ");
print "Hello, #{name}! Welcome to CacaoLang!";