lua-users home
lua-l archive

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


I misspoke by saying "avoid semicolons". What Lua works to do by imposing
whitespace restrictions is make them optional.

Mark

on 1/5/04 10:13 AM, Luiz Henrique de Figueiredo at lhf@tecgraf.puc-rio.br
wrote:

>> 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
>