Nomor Pertukaran di Lua

a, b = 5, 10
a, b = b, a
print(a, b) -- haha simple swap program 
Hard Coder