Jengamon
Jengamon
While a lot of the API is meant to resemble that of the Wren API, it's a good idea to just do a documentation pass of the entire library, mainly...
For example: https://github.com/Jengamon/ruwren/blob/eb68c25c71bc2b86c7b13f0634855ddd329d8805/src/runtime.rs#L97 unwrapping or panicking in runtime.rs is UB as it crosses the C threshold. Remove these and replace with some kind of defaulting.
I wanted to sub my strings, so I made a quick implementation
I have initial sketch of `string.lower`, `string.rep`, `string.reverse`, and `string.upper`.
Right now, this only accepts the local attributes, but doesn't do anything with them. As is, this would lead to incorrect behavior, as `const` and `close` change some of the...
I'm not 100% on the error messages, so i modeled them after PUC-Lua's.
kickstart a implementation on value metatables. I did try putting the table in `Context` proper, but I couldn't figure out how to get it to properly reference and was probably...
This should fix the COMPATIBILITY note.