├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── examples ├── hello_world │ ├── README.md │ ├── definition.yml │ ├── hello_world.lua │ └── index.html └── markdown │ ├── README.md │ ├── definition.yml │ ├── index.html │ └── main.lua └── src ├── emcc-lua ├── emcc_lua_lib ├── definition.py ├── file.py └── helper.py ├── main.c └── main.lua /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysugimoto/webassembly-lua/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysugimoto/webassembly-lua/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysugimoto/webassembly-lua/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysugimoto/webassembly-lua/HEAD/README.md -------------------------------------------------------------------------------- /examples/hello_world/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysugimoto/webassembly-lua/HEAD/examples/hello_world/README.md -------------------------------------------------------------------------------- /examples/hello_world/definition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysugimoto/webassembly-lua/HEAD/examples/hello_world/definition.yml -------------------------------------------------------------------------------- /examples/hello_world/hello_world.lua: -------------------------------------------------------------------------------- 1 | function hello_world() 2 | return "Hello, WebAssembly Lua!" 3 | end 4 | -------------------------------------------------------------------------------- /examples/hello_world/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysugimoto/webassembly-lua/HEAD/examples/hello_world/index.html -------------------------------------------------------------------------------- /examples/markdown/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysugimoto/webassembly-lua/HEAD/examples/markdown/README.md -------------------------------------------------------------------------------- /examples/markdown/definition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysugimoto/webassembly-lua/HEAD/examples/markdown/definition.yml -------------------------------------------------------------------------------- /examples/markdown/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysugimoto/webassembly-lua/HEAD/examples/markdown/index.html -------------------------------------------------------------------------------- /examples/markdown/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysugimoto/webassembly-lua/HEAD/examples/markdown/main.lua -------------------------------------------------------------------------------- /src/emcc-lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysugimoto/webassembly-lua/HEAD/src/emcc-lua -------------------------------------------------------------------------------- /src/emcc_lua_lib/definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysugimoto/webassembly-lua/HEAD/src/emcc_lua_lib/definition.py -------------------------------------------------------------------------------- /src/emcc_lua_lib/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysugimoto/webassembly-lua/HEAD/src/emcc_lua_lib/file.py -------------------------------------------------------------------------------- /src/emcc_lua_lib/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysugimoto/webassembly-lua/HEAD/src/emcc_lua_lib/helper.py -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysugimoto/webassembly-lua/HEAD/src/main.c -------------------------------------------------------------------------------- /src/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysugimoto/webassembly-lua/HEAD/src/main.lua --------------------------------------------------------------------------------