quick and dirty pure lua webassembly interpreter
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

add readme

+8
+8
README.md
··· 1 + # lwasmlib 2 + 3 + Quick and dirty WebAssembly interpreter in pure Lua 5.3, written in 24 hours for a hackathon by someone on very little sleep who doesn't know much Lua. 4 + 5 + Intended for using native libraries in contexts where Lua is allowed but native code is not, e.g. LuaTeX in its default restricted mode. 6 + 7 + Currently lacks support for floating point, `call_indirect`, certain unsigned i64 operations, and imports and exports other than functions. 8 + Probably contains a lot of bugs in the parts it does support.