lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> On Aug 20, 2015, at 11:43 PM, Dirk Laurie <dirk.laurie@gmail.com> wrote:
> 
> 
> The possibilities are legion!
> 

Sadly so are the possibilities for abuse…

a, b = get_two_integers()
x, y = 1, 1

print(a, b)
-> 1 1

print(x, y)
-> 1 1

print(x+y, a+b)
-> 2 “Elephant”

—Tim