7 lines
96 B
Text
7 lines
96 B
Text
class SWAP{T} is
|
|
swap(inout a, inout b:T) is
|
|
t ::= a;
|
|
a := b;
|
|
b := t;
|
|
end;
|
|
end;
|