[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Create Lua command line in a lua script
- From: Harley Laue <losinggeneration@...>
- Date: Mon, 1 Jul 2013 18:55:47 -0500
On Monday, July 01, 2013 05:15:35 PM Milind Gupta wrote:
> Hi,
> I have a Lua program and I want to provide a terminal to the user which
> can be used as a lua interpreter command line, so that the user can control
> the program using that command line and lua code from that terminal. How do
> I make the interpreter command line in Lua to accommodate incomplete lines?
>
> Thanks,
> Milin
What it kind of sounds like you're wanting is a Lua REPL (Read–eval–print
loop) similar to running lua without any arguments. If that's the case, you
may want to look at https://github.com/hoelzro/lua-repl as well (it's under a
permissive license.) Otherwise, you can look directly at the lua source code
to see how it's implemented (in src/lua.c if memory serves.)