RosettaCodeData/Task/Generic-swap/Sather/generic-swap-2.sa
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

8 lines
135 B
Text

class MAIN is
main is
x ::= 10;
y ::= 20;
SWAP{INT}::swap(inout x, inout y);
#OUT + x + ", " + y + "\n";
end;
end;