1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-20 01:57:09 +03:00
mal - Make a Lisp
Go to file
Nathan Fiedler 77db07c9be Step 5 of Make-a-Lisp for Erlang
make test^erlang^step0 passes
make test^erlang^step1 passes
make test^erlang^step2 passes
make test^erlang^step3 passes
make test^erlang^step4 passes
make test^erlang^step5 "passes" (returns 50005000 for last test)
2015-04-04 09:15:13 -07:00
bash All: move metadata, atoms, readline, conj to stepA. 2015-03-14 17:17:14 -05:00
c C: remove extraneous glib includes. 2015-03-20 08:35:53 -05:00
clojure Tests: add testing Dockerfile. Impl fixes. 2015-03-11 22:22:35 -05:00
coffee All: move metadata, atoms, readline, conj to stepA. 2015-03-14 17:17:14 -05:00
cpp C++: add Makefile stats targets. 2015-03-28 11:53:30 -05:00
cs All: move metadata, atoms, readline, conj to stepA. 2015-03-14 17:17:14 -05:00
docs FAQ: clarify about competing/overlapping implementations. 2015-03-28 12:11:44 -05:00
erlang Step 5 of Make-a-Lisp for Erlang 2015-04-04 09:15:13 -07:00
factor/src factor: add time-ms, perf tests work 2015-04-02 15:55:47 -04:00
forth All: rename stepA_interop to stepA_mal 2015-02-28 11:09:54 -06:00
go All: move metadata, atoms, readline, conj to stepA. 2015-03-14 17:17:14 -05:00
haskell All: move metadata, atoms, readline, conj to stepA. 2015-03-14 17:17:14 -05:00
java runtest: set pty size to fix readline of long lines. 2015-03-18 13:08:08 -05:00
js All: move metadata, atoms, readline, conj to stepA. 2015-03-14 17:17:14 -05:00
julia Julia: missed Makefile for stats. 2015-03-31 23:12:25 -05:00
lua Tests: add testing Dockerfile. Impl fixes. 2015-03-11 22:22:35 -05:00
make All: move metadata, atoms, readline, conj to stepA. 2015-03-14 17:17:14 -05:00
mal runtest: set pty size to fix readline of long lines. 2015-03-18 13:08:08 -05:00
matlab README: add more testing info. 2015-03-02 17:57:45 -06:00
miniMAL All step0: add test, fix bugs, remove step0 eval. 2015-03-07 09:04:07 -06:00
nim Adapt to new Nim devel compiler 2015-03-29 03:07:10 +02:00
ocaml ocaml: fix empty? on vectors. 2015-03-02 13:41:27 -06:00
perl Fix typo in perl _clone() 2015-03-17 11:14:13 +11:00
php All: move metadata, atoms, readline, conj to stepA. 2015-03-14 17:17:14 -05:00
process guide: most of step 9 and start step A. 2015-03-25 20:53:53 -06:00
ps runtest: set pty size to fix readline of long lines. 2015-03-18 13:08:08 -05:00
python All: move metadata, atoms, readline, conj to stepA. 2015-03-14 17:17:14 -05:00
r All: move metadata, atoms, readline, conj to stepA. 2015-03-14 17:17:14 -05:00
racket racket: fix apply/vector 2015-03-22 14:43:26 -05:00
ruby Tests: add testing Dockerfile. Impl fixes. 2015-03-11 22:22:35 -05:00
rust Revert "Revert "Replace pcre with Rust-implemented regex crate (based on RE2)."" 2015-03-05 23:22:56 -06:00
scala All: move metadata, atoms, readline, conj to stepA. 2015-03-14 17:17:14 -05:00
swift Initial Swift implementation. 2015-03-23 01:23:27 -07:00
tests tests: add test to make sure *host-language* is set 2015-04-03 18:31:14 -05:00
vb Correct typo 2015-03-10 08:15:33 -04:00
.gitignore Step 0 of Make-a-Lisp for Erlang 2015-04-04 08:59:16 -07:00
.gitmodules JS: switch from josh.js console to jqconsole. 2014-04-26 14:19:49 -05:00
core.mal rust: add step8_macros 2015-01-06 21:58:59 -06:00
LICENSE Rename LICENSE file so it's picked up by github. 2015-03-09 14:20:30 -05:00
Makefile Step 0 of Make-a-Lisp for Erlang 2015-04-04 08:59:16 -07:00
mal.html JS: add localStorage history load/save. Slurp using sync XHR. 2014-04-27 16:55:31 -05:00
perf.mal Add long running perf test. 2015-02-28 10:38:17 -06:00
README.md Step 0 of Make-a-Lisp for Erlang 2015-04-04 08:59:16 -07:00
runtest-old.py runtest.py: order of magnitude faster. 2015-02-28 15:41:18 -06:00
runtest.py runtest.py: allow repeated form in output. 2015-03-20 08:40:46 -05:00

mal - Make a Lisp

Description

Mal is a Clojure inspired Lisp interpreter.

Mal is implemented in 32 different languages:

  • Bash shell
  • C
  • C++
  • C#
  • Clojure
  • CoffeeScript
  • Erlang
  • Factor
  • Forth
  • Go
  • Haskell
  • Java
  • JavaScript (Online Demo)
  • Julia
  • Lua
  • GNU Make
  • mal itself
  • MATLAB
  • miniMAL
  • Nim
  • OCaml
  • Perl
  • PHP
  • Postscript
  • Python
  • R
  • Racket
  • Ruby
  • Rust
  • Scala
  • Swift
  • Visual Basic.NET

Mal is a learning tool. See the make-a-lisp process guide. Each implementation of mal is separated into 11 incremental, self-contained (and testable) steps that demonstrate core concepts of Lisp. The last step is capable of self-hosting (running the mal implementation of mal).

The mal (make a lisp) steps are:

Mal was presented publicly for the first time in a lightning talk at Clojure West 2014 (unfortunately there is no video). See mal/clojurewest2014.mal for the presentation that was given at the conference (yes the presentation is a mal program).

If you are interesting in creating a mal implementation (or just interested in using mal for something), please drop by the #mal channel on freenode. In addition to the make-a-lisp process guide there is also a mal/make-a-lisp FAQ where I attempt to answer some common questions.

Building/running implementations

Bash 4

cd bash
bash stepX_YYY.sh

C

The C implementation of mal requires the following libraries (lib and header packages): glib, libffi6 and either the libedit or GNU readline library.

cd c
make
./stepX_YYY

C++

The C++ implementation was created by Stephen Thirlwall (sdt)

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 C# compiler (mcs) and the Mono runtime (version 2.10.8.1). Both are required to build and run the C# implementation.

cd cs
make
mono ./stepX_YYY.exe

Clojure

cd clojure
lein with-profile +stepX trampoline run

CoffeeScript

sudo npm install -g coffee-script
cd coffee
coffee ./stepX_YYY

Erlang

Requires rebar to build.

cd erlang
MAL_STEP=stepX_YYY rebar compile escriptize
./stepX_YYY

Factor

The Factor implementation was created by Jordan Lewis (jordanlewis)

The Factor implementation of mal has been tested with Factor 0.97 (factorcode.org).

cd factor
FACTOR_ROOTS=src factor -run=stepX_YYY

Forth

The Forth implementation was created by Chris Houser (chouser)

cd forth
gforth stepX_YYY.fs

Go

The Go implementation of mal requires that go is installed on on the path. The implementation has been tested with Go 1.3.1.

cd go
make
./stepX_YYY

Haskell

Install the Haskell compiler (ghc/ghci), the Haskell platform and either the editline package (BSD) or the readline package (GPL). On Ubuntu these packages are: ghc, haskell-platform, libghc-readline-dev/libghc-editline-dev

cd haskell
make
./stepX_YYY

Java 1.7

The Java implementation of mal requires maven2 to build.

cd java
mvn compile
mvn -quiet exec:java -Dexec.mainClass=mal.stepX_YYY
    # OR
mvn -quiet exec:java -Dexec.mainClass=mal.stepX_YYY -Dexec.args="CMDLINE_ARGS"

JavaScript/Node

cd js
npm update
node stepX_YYY.js

Julia

The Julia implementation of mal has been tested with Julia 0.3.7.

cd julia
julia stepX_YYY.jl

Lua

Running the Lua implementation of mal requires lua 5.1 or later, luarocks and the lua-rex-pcre library installed.

cd lua
make  # to build and link linenoise.so
./stepX_YYY.lua

Mal

Running the mal implementation of mal involves running stepA of one of the other implementations and passing the mal step to run as a command line argument.

cd IMPL
IMPL_STEPA_CMD ../mal/stepX_YYY.mal

GNU Make 3.81

cd make
make -f stepX_YYY.mk

Nim 0.10.3

The Nim implementation was created by Dennis Felsing (def-)

Running the Nim implementation of mal requires Nim's current devel branch (0.10.3) or later, and the nre library installed.

cd nim
make
  # OR
nimble build
./stepX_YYY

OCaml 4.01.0

The OCaml implementation was created by Chris Houser (chouser)

cd ocaml
make
./stepX_YYY

MATLAB

The MATLAB implementation of mal has been tested with MATLAB version R2014a on Linux. Note that MATLAB is a commercial product. It should be fairly simple to support GNU Octave once it support classdef object syntax.

cd matlab
./stepX_YYY
matlab -nodisplay -nosplash -nodesktop -nojvm -r "stepX_YYY();quit;"
    # OR with command line arguments
matlab -nodisplay -nosplash -nodesktop -nojvm -r "stepX_YYY('arg1','arg2');quit;"

miniMAL

miniMAL is small Lisp interpreter implemented in less than 1024 bytes of JavaScript. To run the miniMAL implementation of mal you need to download/install the miniMAL interpreter (which requires Node.js).

cd miniMAL
# Download miniMAL and dependencies
npm install
export PATH=`pwd`/node_modules/minimal-lisp/:$PATH
# Now run mal implementation in miniMAL
miniMAL ./stepX_YYY

Perl 5.8

For readline line editing support, install Term::ReadLine::Perl or Term::ReadLine::Gnu from CPAN.

cd perl
perl stepX_YYY.pl

PHP 5.3

The PHP implementation of mal requires the php command line interface to run.

cd php
php stepX_YYY.php

Postscript Level 2/3

The Postscript implementation of mal requires ghostscript to run. It has been tested with ghostscript 9.10.

cd ps
gs -q -dNODISPLAY -I./ stepX_YYY.ps

Python (2 or 3)

cd python
python stepX_YYY.py

R

The R implementation of mal requires R (r-base-core) to run.

cd r
make libs  # to download and build rdyncall
Rscript stepX_YYY.r

Racket (5.3)

The Racket implementation of mal requires the Racket compiler/interpreter to run.

cd racket
./stepX_YYY.rkt

Ruby (1.9+)

cd ruby
ruby stepX_YYY.rb

Rust (1.0.0 nightly)

The rust implementation of mal requires the rust compiler and build tool (cargo) to build.

cd rust
cargo run --release --bin stepX_YYY

Scala

Install scala and sbt (http://www.scala-sbt.org/0.13/tutorial/Installing-sbt-on-Linux.html):

cd scala
sbt 'run-main stepX_YYY'
    # OR
sbt compile
scala -classpath target/scala*/classes stepX_YYY

Swift

The Swift implementation was created by Keith Rollin

The Swift implemenation of mal requires the Swift compiler (XCode) to build.

cd swift
make
./stepX_YYY

Visual Basic.NET

The VB.NET implementation of mal has been tested on Linux using the Mono VB compiler (vbnc) and the Mono runtime (version 2.10.8.1). Both are required to build and run the VB.NET implementation.

cd vb
make
mono ./stepX_YYY.exe

Running tests

Functional tests

The are nearly 500 generic functional tests (for all implementations) in the tests/ directory. Each step has a corresponding test file containing tests specific to that step. The runtest.py test harness launches a Mal step implementation and then feeds the tests one at a time to the implementation and compares the output/return value to the expected output/return value.

To simplify the process of running tests, a top level Makefile is provided with convenient test targets.

  • To run all the tests across all implementations (be prepared to wait):
make test
  • To run all tests against a single implementation:
make test^IMPL

# e.g.
make test^clojure
make test^js
  • To run tests for a single step against all implementations:
make test^stepX

# e.g.
make test^step2
make test^step7
  • To run tests for a specifc step against a single implementation:
make test^IMPL^stepX

# e.g
make test^ruby^step3
make test^ps^step4

Self-hosted functional tests

  • To run the functional tests in self-hosted mode, you specify mal as the test implementation and use the MAL_IMPL make variable to change the underlying host language (default is JavaScript):
make MAL_IMPL=IMPL test^mal^step2

# e.g.
make test^mal^step2   # js is default
make MAL_IMPL=ruby test^mal^step2
make MAL_IMPL=python test^mal^step2

Performance tests

Warning: These performance tests are neither statistically valid nor comprehensive; runtime performance is a not a primary goal of mal. If you draw any serious conclusions from these performance tests, then please contact me about some amazing oceanfront property in Kansas that I'm willing to sell you for cheap.

  • To run performance tests against a single implementation:
make perf^IMPL

# e.g.
make perf^js
  • To run performance tests against all implementations:
make perf

Generating language statistics

  • To report line and byte stastics for a single implementation:
make stats^IMPL

# e.g.
make stats^js
  • To report line and bytes stastics for general Lisp code (env, core and stepA):
make stats-lisp^IMPL

# e.g.
make stats-lisp^js

Docker test environment

There is a Dockerfile included in the tests/docker directory that builds a docker image based on Ubuntu Utopic that contains everything needed to run tests against all the implementations (except for MATLAB which is proprietary/licensed).

Build the the docker image using a provided script. WARNING: this will likely take over an hour to build from scratch and use more 3 GB of disk:

./tests/docker-build.sh

Launch a docker container from that image built above. This will volume mount the mal directory to /mal and then give you a bash prompt in the container. You can then run individual mal implementations and tests:

./tests/docker-run.sh

You can also specify a command to run within the container. For example, to run step2 tests for every implementation (except MATLAB):

./tests/docker-run.sh make SKIP_IMPLS="matlab" test^step2

Notes:

  • JVM-based language implementations (Java, Clojure, Scala): you will need to run these implementations once manually first before you can run tests because runtime dependencies need to be downloaded to avoid the tests timing out. These dependencies are download to dot-files in the /mal directory so they will persist between runs.
  • Compiled languages: if your host system is different enough from Ubuntu Utopic then you may need to re-compile your compiled languages from within the container to avoid linker version mismatches.

License

Mal (make-a-lisp) is licensed under the MPL 2.0 (Mozilla Public License 2.0). See LICENSE.txt for more details.