/* { fn hello() { print "Hello world"; } hello(); } */ { fn hello(arg) { print arg; } hello("world"); }