1 2 3 4 5 6 7 8 9 10 11
Int second(Int x, Int y) { Int z; z := x; x := y; y := z; return y; } Int main () { return second(100, 200); }