fn iadd(x int, y int) int { return x + y } fn main() { println('Hello world') println('iadd: ' + iadd(1, 2).str()) }