RosettaCodeData/Task/Generic-swap/Sather/generic-swap-2.sa
2023-07-01 13:44:08 -04: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;