Crates.io | lua_parser |
lib.rs | lua_parser |
version | 0.9.1 |
source | src |
created_at | 2024-09-08 05:06:27.560563 |
updated_at | 2024-10-26 15:43:24.923541 |
description | syntax parser for lua language |
homepage | |
repository | https://github.com/ehwan/lua_rust |
max_upload_size | |
id | 1367771 |
size | 348,726 |
lua syntax parser & runtime interpreter in Rust
32bit
: use 32bit integer and float for lua numeric
typeadd lua_ir
crate to your Cargo.toml
[dependencies]
lua_ir = "..."
let mut env = lua_ir::LuaEnv::new();
env.eval_chunk( b"var_hello = 'Hello'" )?;
env.eval_chunk( b"var_world = 'World'" )?;
env.eval_chunk( b"print( var_hello .. ', ' .. var_world .. '!' )" )?;
// Hello, World!
let hello_value = env.get_global( "var_hello" )?;
let world_value = env.get_global( "var_world" )?;
env.set_global( "var_hello", 10.into() )?;
clone this repository and simply run
$ cargo run <source_file.lua>
or
$ cargo run
will start lua REPL. Note that this executable is not cargo publish
ed.