5 lines
76 B
Text
5 lines
76 B
Text
pro swap, a, b
|
|
c = temporary(a)
|
|
a = temporary(b)
|
|
b = temporary(c)
|
|
end
|