lua-users home
lua-l archive

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


I actually like the fact that Lua is not C-like.  There are already too many
C-like languages and it becomes rather confusing to have to deal with all
the variations-on-a-theme.  Lua's choice of syntax avoids that problem.

My biggest concern in adopting Lua is the overhead of the garbage
collection.  In a real-time environment on machines which have poor random
memory access times, having the GC walk across the data structures is very
time consuming.  This will greatly constrain how we can use the language
unless an alternative mechanism can be retrofitted.  I'd much rather have
this addressed by the original authors, but I haven't seen any discussion of
it...?


-----Original Message-----
From: Dan Partelly [mailto:dan_partelly@rdsor.ro]
Sent: Thursday, August 08, 2002 3:26 PM
To: Multiple recipients of list
Subject: Re: Evaluating LUA

.
.
.
If you plainly ask me what I did not like to Lua, is its "pascualish"
sintax. Im a beleiver in
if() { } and not in if - then - end. Brackets add more clarity and
efficinecy. 
.
.
.