├── .gitignore ├── README.md ├── deps.edn ├── sample.wat ├── src └── wasm │ └── core.cljc └── test └── src └── core_test.clj /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.iml 3 | .nrepl-port 4 | .cpcache 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman01la/clj-wasm/HEAD/README.md -------------------------------------------------------------------------------- /deps.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman01la/clj-wasm/HEAD/deps.edn -------------------------------------------------------------------------------- /sample.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman01la/clj-wasm/HEAD/sample.wat -------------------------------------------------------------------------------- /src/wasm/core.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman01la/clj-wasm/HEAD/src/wasm/core.cljc -------------------------------------------------------------------------------- /test/src/core_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman01la/clj-wasm/HEAD/test/src/core_test.clj --------------------------------------------------------------------------------