main() { syscall(60, f(1, 2, 3)) } f(x, y, z) { w := g(4, 5, 6) return x + y + z + w } g(x, y, z) { return x + y + z }