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

4 lines
117 B
Lua

x, y = 3, 4
print(x, y) --> 3 4
x, y = y, x -- swap
print(x, y) --> 4 3