1
1
mirror of https://github.com/kanaka/mal.git synced 2024-10-26 14:22:25 +03:00

README: add C++ instructions and bump count to 29.

This commit is contained in:
Joel Martin 2015-03-28 11:41:16 -05:00
parent bf03ff98bd
commit 73fc93661a

View File

@ -4,10 +4,11 @@
Mal is a Clojure inspired Lisp interpreter.
Mal is implemented in 28 different languages:
Mal is implemented in 29 different languages:
* Bash shell
* C
* C++
* C#
* Clojure
* CoffeeScript
@ -88,6 +89,21 @@ make
./stepX_YYY
```
### C++
The C++ implementation of mal requires g++-4.9 or clang++-3.5 and
a readline compatible library to build. See the `cpp/README.md` for
more details:
```
cd cpp
make
# OR
make CXX=clang++-3.5
./stepX_YYY
```
### C# ###
The C# implementation of mal has been tested on Linux using the Mono