lua-users home
lua-l archive

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




* possibility to implement edit and continue feature

What do you need in addition to dofile?

* macro (or something else for debugging purposes #ifdef...#endif)

 Conditional compilation and macros are two different things.

In any case, adding support for conditional compilation seems counterproductive if you want to do interactive development.

What's wrong with

    if debug then print(x) end

anyway?

Cheers,
Thomas.