Crates.io | lua_semantics |
lib.rs | lua_semantics |
version | 0.8.0 |
source | src |
created_at | 2024-09-16 05:16:47.296221 |
updated_at | 2024-10-25 12:41:07.605892 |
description | semantic analysis and enhanced AST converter for lua_parser crate |
homepage | |
repository | https://github.com/ehwan/lua_rust |
max_upload_size | |
id | 1376004 |
size | 60,210 |
lua syntax parser & runtime interpreter in Rust
32bit
: use 32bit integer and float for lua numeric
typeAs library, add 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() )?;
Simply running
$ cargo run <source_file.lua>
or
$ cargo run
will start lua REPL. Note that this executable is not cargo publish
ed.