lua_tokenizer

Crates.iolua_tokenizer
lib.rslua_tokenizer
version0.4.0
sourcesrc
created_at2024-09-08 05:04:31.482021
updated_at2024-10-25 12:40:43.278083
descriptiontokenizer for lua language
homepage
repositoryhttps://github.com/ehwan/lua_rust
max_upload_size
id1367769
size82,460
Taehwan Kim (ehwan)

documentation

README

lua_rust

crates.io docs.rs

lua syntax parser & runtime interpreter in Rust

  • LALR(1), GLR parser
  • syntax referenced from lua 5.4 reference manual
  • Greatly in progress
    • grammar fully implemented
    • std library barely implemented

Cargo Features

  • 32bit: use 32bit integer and float for lua numeric type

How to use

As 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 published.

Commit count: 79

cargo fmt