swap number in lua code example Example: swap number in lua a, b = 5, 10 a, b = b, a print(a, b) -- haha simple swap program