1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-11 13:55:55 +03:00

wasm: update README. Activate in travis.

This commit is contained in:
Joel Martin 2018-12-08 16:56:59 -06:00
parent df43e71977
commit d72395aa8b
2 changed files with 16 additions and 1 deletions

View File

@ -91,6 +91,7 @@ matrix:
- {env: IMPL=vb, services: [docker]}
- {env: IMPL=vhdl, services: [docker]}
- {env: IMPL=vimscript, services: [docker]}
- {env: IMPL=wasm, services: [docker]}
- {env: IMPL=yorick, services: [docker]}
script:

View File

@ -6,7 +6,7 @@
Mal is a Clojure inspired Lisp interpreter.
Mal is implemented in 73 languages:
Mal is implemented in 74 languages:
* Ada
* GNU awk
@ -80,6 +80,7 @@ Mal is implemented in 73 languages:
* VHDL
* Vimscript
* Visual Basic.NET
* WebAssembly (wasm)
* Yorick
@ -1039,6 +1040,19 @@ make
mono ./stepX_YYY.exe
```
### WebAssembly (wasm) ###
The WebAssembly implementation has been written in
[Wam](https://github.com/kanaka/wam) (WebAssembly Macro language) and
runs under the [wac/wace](https://github.com/kanaka/wac) WebAssembly
runtime.
```
cd wasm
make
wace ./stepX_YYY.wasm
```
### Yorick
*The Yorick implementation was created by [Dov Murik](https://github.com/dubek)*