lua-users home
lua-l archive

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


>From lua-l@tecgraf.puc-rio.br Wed Aug 18 03:38:33 1999
>From: Adolf Mathias <dolfi@zkm.de>

>I've done some evolutionary programming in Scheme (a Lisp dialect), but
>don't think it's that easy in Lua, because you don't have a simple
>program representation other than text. In Scheme, you can implement the
>basic operations, mutation and cross-over, by means of simple list
>operations,

You can do the same in Lua using tables to implement lists.
You don't have to use text at all.
--lhf