commit 87523cfad6d1e110f49536892e1a742060bfb8f3 parent 7de67507b8beb1dc7a5773bc81e38019385a074c Author: Sylvia Ivory <git@sivory.net> Date: Mon, 23 Jun 2025 03:51:57 -0700 Add README Diffstat:
| A | readme.md | | | 19 | +++++++++++++++++++ |
1 file changed, 19 insertions(+), 0 deletions(-)
diff --git a/readme.md b/readme.md @@ -0,0 +1,19 @@ +# MÃ¥nen + +Fancy Lua REPl! Featuring support for Lua 5.1-5.4, LuaJIT, and Luau! + +## Features + +* Syntax highlighting +* Syntax checking +* Formatted table outputs +* Saved REPL history (TODO) + +## Running + +```bash +cargo run # Uses vendored Lua 5.4 by default +cargo run --no-default-features --features lua52 # Uses system Lua 5.2 +cargo run --no-default-features --features vendored,luau[-vector4] # Uses vendored Luau (with vector4) +cargo run --no-default-features --features vendored,luau-jit # Uses vendored Luau with JIT +```