← All examples

Hello, world

Strings are joined with +, and print writes a line to stdout.

let name: string = "world"
print("Hello, " + name + "!")

Run it:

$ langoost run hello.goost
Hello, world!
#basics · View as Markdown