hello
zo / basic
program
fun main() { showln("hello, hacker!"); }
output
hello, hacker!
This program calls a function (showln) to displayed the message "hello, hacker!" passed as argument.
Each zo program should declare an entry function (
main). Without it the compiler raised an error.