lua-users home
lua-l archive

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


> True, but most people understand why you can't add 1/3 repeatedly and 
> wind up with 1.

You do. The code below prints true.
	a=1/3
	b=3*a print(b==1)
	b=a+a+a print(b==1)
	b=(a+a)+a print(b==1)
	b=a+(a+a) print(b==1)