lua-rs
lua-rs copied to clipboard
Pure Rust implementation of Lua compiler.
Closes #9
I get this error trying on compile that tool: ``` error[E0277]: the trait bound `u8: Buf` is not satisfied --> src/scanner.rs:257:25 | 257 | self.buffer.put(c as u8) | ^^^^^^^ the...
The following code is tripping a syntax error: ``` local FOOBAR = { [0xDEADBEEF] = true } ``` However, this doesn't: ``` local FOOBAR = { [100] = true, }...