[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Differences between lua 4 and 5?
- From: Mark Hamburg <mhamburg@...>
- Date: Mon, 05 Jan 2004 10:20:43 -0800
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
>