RosettaCodeData/Task/Generic-swap/PL-I/generic-swap-6.pli
2016-12-05 22:15:40 +01:00

6 lines
73 B
Text

Begin;
declare t like this;
t = this;
this = that;
that = t;
End;