lua-users home
lua-l archive

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


>This is, of course, why some languages use semicolons. ;-) You essentially

You can use semicolons if you wish:

 a = x;
 (print or write)(x, y, z)

or

 a = x; (print or write)(x, y, z)

--lhf