Examples

Hello

A module header, a main, a template.

main (print)

# A file starts with its module name and the modules it uses.
# main() is where the program starts.
main()
    name = "Nasper"
    print.line("Hello, {name}.")
Hello, Nasper.