int foo(int x) { x = x + 1; return x; } int program (int argc, string[] argv) { return foo(17); }