A Lua function runner
It's a simple command-line tool that allows you to run Lua scripts and functions directly from the terminal. Its performance is optimized for quick execution of Lua code snippets so it's suitable for low-end hardware such as Raspberry Pi.
$ cat > hello.lua <<EOF
> function hello()
> print("Hello, world!")
> end
> return hello
> EOF
$ lmb eval --file hello.lua
Hello, world!
- Run Lua scripts and functions from the command line.
You can install lmb
using cargo
:
$ cargo install --git https://github.com/henry40408/lmb.git
MIT