lua-users home
lua-l archive

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


It was thus said that the Great Leinen, Rick once stated:
> 
> One thing I neglected to mention is that the scripts are to be kept in the
> Kintetis' internal 256K data flash.  While the parsed script should be
> small, the source script can get large, especially if more than one is
> used.

  Do note that the compiled Lua script may not necessarily be smaller than
Lua source code.  Also, I've found that compressed Lua scripts are smaller
than compressed compiled Lua scripts (using zlib---it's not a hard library
to use and there are Lua wrappers for it).

  -spc