println('hello') fn abc(x int) { println(x) } abc(123);abc(456);println('hello') ===output=== hello 123 456 hello