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