1 2 3 4 5 6 7 8 9 10 11
fn hello_world() { println("hello world!") } fn say(msg) { println(msg) } fn say_msg_to(msg, to) { println(to + ": " + msg) }