lua-users home
lua-l archive

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


Where do arguments for the function call end?

At the string:
	print (x "a".."b")  ===  print ((x "a").."b")

Original example:
	print "a".."b"  ===  (print "a").."b"
Both of which are errors.

-jcw