elisp: Get rid of load-relative hack
[jackhill/mal.git] / README.md
CommitLineData
60154d24
JM
1# mal - Make a Lisp
2
f9e6bb80
JM
3[![Build Status](https://travis-ci.org/kanaka/mal.svg?branch=master)](https://travis-ci.org/kanaka/mal)
4
bcddc3e4
JM
5## Description
6
5b6498bc 7**1. Mal is a Clojure inspired Lisp interpreter**
b76aa73b 8
5b6498bc 9**2. Mal is implemented in 74 languages**
bcddc3e4 10
f98792ad
JM
11* **Ada** - *created by [Chris Moore](https://github.com/zmower)*
12* **GNU awk** - *created by [Miutsuru Kariya](https://github.com/kariya-mitsuru)*
13* **Bash 4**
14* **BASIC** (C64 and QBasic)
15* **C**
16* **C++** - *created by [Stephen Thirlwall](https://github.com/sdt)*
17* **C#**
18* **ChucK** - *created by [Vasilij Schneidermann](https://github.com/wasamasa)*
19* **Common Lisp** - *created by [Iqbal Ansari](https://github.com/iqbalansari)*
20* **Clojure** (Clojure and ClojureScript)
21* **CoffeeScript**
22* **Crystal** - *created by [Linda_pp](https://github.com/rhysd)*
23* **D** - *created by [Dov Murik](https://github.com/dubek)*
24* **Dart** - *created by [Harry Terkelsen](https://github.com/hterkelsen)*
25* **Elixir** - *created by [Martin Ek](https://github.com/ekmartin)*
26* **Elm** - *created by [Jos van Bakel](https://github.com/c0deaddict)*
27* **Emacs Lisp** - *created by [Vasilij Schneidermann](https://github.com/wasamasa)*
28* **Erlang** - *created by [Nathan Fiedler](https://github.com/nlfiedler)*
29* **ES6** (ECMAScript 6 / ECMAScript 2015)
30* **F#** - *created by [Peter Stephens](https://github.com/pstephens)*
31* **Factor** - *created by [Jordan Lewis](https://github.com/jordanlewis)*
32* **Fantom** - *created by [Dov Murik](https://github.com/dubek)*
33* **Forth** - *created by [Chris Houser](https://github.com/chouser)*
34* **Go**
35* **Groovy**
36* **GNU Guile** - *created by [Mu Lei](https://github.com/NalaGinrut).*
37* **GNU Smalltalk** - *created by [Vasilij Schneidermann](https://github.com/wasamasa)*
38* **Haskell**
39* **Haxe** (Neko, Python, C++ and JavaScript)
40* **Hy**
41* **Io** - *created by [Dov Murik](https://github.com/dubek)*
42* **Java**
43* **JavaScript** ([Online Demo](http://kanaka.github.io/mal))
44* **Julia**
45* **Kotlin** - *created by [Javier Fernandez-Ivern](https://github.com/ivern)*
46* **LiveScript** - *created by [Jos van Bakel](https://github.com/c0deaddict)*
47* **Logo** - *created by [Dov Murik](https://github.com/dubek)*
48* **Lua**
49* **GNU Make**
50* **mal itself**
51* **Matlab** (GNU Octave and MATLAB)
52* **[miniMAL](https://github.com/kanaka/miniMAL)**
53* **NASM** - *created by [Ben Dudson](https://github.com/bendudson)*
54* **Nim** - *created by [Dennis Felsing](https://github.com/def-)*
55* **Object Pascal**
56* **Objective C**
57* **OCaml** - *created by [Chris Houser](https://github.com/chouser)*
58* **Perl**
59* **Perl 6** - *created by [Hinrik Örn Sigurðsson](https://github.com/hinrik)*
60* **PHP**
61* **Picolisp** - *created by [Vasilij Schneidermann](https://github.com/wasamasa)*
62* **PL/pgSQL** (Postgres)
63* **PL/SQL** (Oracle)
64* **Postscript**
65* **PowerShell**
66* **Python** (2.X and 3.X)
67* **RPython**
68* **R**
69* **Racket**
70* **Rexx** - *created by [Dov Murik](https://github.com/dubek)*
71* **Ruby**
72* **Rust**
73* **Scala**
74* **Scheme (R7RS)** - *created by [Vasilij Schneidermann](https://github.com/wasamasa)*
75* **Skew** - *created by [Dov Murik](https://github.com/dubek)*
76* **Swift** - *created by [Keith Rollin](https://github.com/keith-rollin)*
77* **Swift 3**
78* **Tcl** - *created by [Dov Murik](https://github.com/dubek)*
79* **TypeScript** - *created by [Masahiro Wakame](https://github.com/vvakame)*
80* **VHDL** - *created by [Dov Murik](https://github.com/dubek)*
81* **Vimscript** - *created by [Dov Murik](https://github.com/dubek)*
82* **Visual Basic.NET**
83* **WebAssembly** (wasm)
84* **Yorick** - *created by [Dov Murik](https://github.com/dubek)*
bcddc3e4
JM
85
86
5b6498bc
JM
87**3. Mal is a learning tool**
88
89Each implementation of mal is separated into
bd08422d
JM
9011 incremental, self-contained (and testable) steps that demonstrate
91core concepts of Lisp. The last step is capable of self-hosting
5b6498bc
JM
92(running the mal implementation of mal). See the [make-a-lisp process
93guide](process/guide.md).
bcddc3e4 94
5b6498bc 95The make-a-lisp steps are:
bcddc3e4 96
0f4ca9d1
JM
97* [step0_repl](process/guide.md#step0)
98* [step1_read_print](process/guide.md#step1)
99* [step2_eval](process/guide.md#step2)
100* [step3_env](process/guide.md#step3)
101* [step4_if_fn_do](process/guide.md#step4)
102* [step5_tco](process/guide.md#step5)
103* [step6_file](process/guide.md#step6)
104* [step7_quote](process/guide.md#step7)
105* [step8_macros](process/guide.md#step8)
106* [step9_try](process/guide.md#step9)
90f618cb 107* [stepA_mal](process/guide.md#stepA)
bcddc3e4 108
138cbb9c
JM
109Each make-a-lisp step has an associated architectural diagram. That elements
110that are new for that step are highlighted in red.
111Here is the final diagram for [step A](process/guide.md#stepA):
5b6498bc
JM
112
113![stepA_mal architecture](process/stepA_mal.png)
114
115If you are interesting in creating a mal implementation (or just
116interested in using mal for something), please drop by the #mal
117channel on freenode. In addition to the [make-a-lisp process
118guide](process/guide.md) there is also a [mal/make-a-lisp
119FAQ](docs/FAQ.md) where I attempt to answer some common questions.
120
121
122## Presentations
bcddc3e4
JM
123
124Mal was presented publicly for the first time in a lightning talk at
125Clojure West 2014 (unfortunately there is no video). See
dede32ba 126examples/clojurewest2014.mal for the presentation that was given at the
5b6498bc
JM
127conference (yes, the presentation is a mal program).
128
129At Midwest.io 2015, Joel Martin gave a presentation on Mal titled
130"Achievement Unlocked: A Better Path to Language Learning".
dede32ba 131[Video](https://www.youtube.com/watch?v=lgyOAiRtZGw),
5b6498bc
JM
132[Slides](http://kanaka.github.io/midwest.io.mal/).
133
134More recently Joel gave a presentation on "Make Your Own Lisp Interpreter
135in 10 Incremental Steps" at LambdaConf 2016:
86633b33
JM
136[Part 1](https://www.youtube.com/watch?v=jVhupfthTEk),
137[Part 2](https://www.youtube.com/watch?v=X5OQBMGpaTU),
138[Part 3](https://www.youtube.com/watch?v=6mARZzGgX4U),
139[Part 4](https://www.youtube.com/watch?v=dCO1SYR5kDU),
9ed75afd 140[Slides](http://kanaka.github.io/lambdaconf/).
60154d24
JM
141
142## Building/running implementations
143
5b207de7
JM
144The simplest way to run any given implementation is to use docker.
145Every implementation has a docker image pre-built with language
70cefa38 146dependencies installed. You can launch the REPL using a convenient
5b207de7
JM
147target in the top level Makefile (where IMPL is the implementation
148directory name and stepX is the step to run):
149
150```
151make DOCKERIZE=1 "repl^IMPL^stepX"
152 # OR stepA is the default step:
153make DOCKERIZE=1 "repl^IMPL"
154```
155
156
6faafa00
CM
157### Ada
158
7b458a65
JM
159The Ada implementation was developed with GNAT 4.9 on debian. It also
160compiles unchanged on windows if you have windows versions of git,
161GNAT and (optionally) make. There are no external dependencies
162(readline not implemented).
6faafa00
CM
163
164```
165cd ada
166make
167./stepX_YYY
168```
169
8c7587af
MK
170### GNU awk
171
172The GNU awk implementation of mal has been tested with GNU awk 4.1.1.
173
174```
175cd gawk
176gawk -O -f stepX_YYY.awk
177```
178
bcddc3e4 179### Bash 4
60154d24
JM
180
181```
182cd bash
183bash stepX_YYY.sh
184```
185
2bcc46af 186### BASIC (C64 and QBasic)
1b245300 187
2bcc46af
JM
188The BASIC implementation uses a preprocessor that can generate BASIC
189code that is compatible with both C64 BASIC (CBM v2) and QBasic. The
1b245300
JM
190C64 mode has been tested with
191[cbmbasic](https://github.com/kanaka/cbmbasic) (the patched version is
192currently required to fix issues with line input) and the QBasic mode
193has been tested with [qb64](http://www.qb64.net/).
194
195Generate C64 code and run it using cbmbasic:
196
197```
198cd basic
199make stepX_YYY.bas
200STEP=stepX_YYY ./run
201```
202
203Generate QBasic code and load it into qb64:
204
205```
206cd basic
207make MODE=qbasic stepX_YYY.bas
208./qb64 stepX_YYY.bas
209```
210
211Thanks to [Steven Syrek](https://github.com/sjsyrek) for the original
212inspiration for this implementation.
213
214
bcddc3e4 215### C
60154d24 216
01c97316 217The C implementation of mal requires the following libraries (lib and
6b3ecaa7
DM
218header packages): glib, libffi6, libgc, and either the libedit or GNU readline
219library.
54c75382 220
60154d24
JM
221```
222cd c
223make
224./stepX_YYY
225```
226
73fc9366
JM
227### C++
228
229The C++ implementation of mal requires g++-4.9 or clang++-3.5 and
230a readline compatible library to build. See the `cpp/README.md` for
231more details:
232
233```
234cd cpp
235make
236 # OR
237make CXX=clang++-3.5
238./stepX_YYY
239```
240
241
9b1563a3 242### C# ###
edc3b064
JM
243
244The C# implementation of mal has been tested on Linux using the Mono
245C# compiler (mcs) and the Mono runtime (version 2.10.8.1). Both are
246required to build and run the C# implementation.
247
248```
249cd cs
250make
ee7cd585 251mono ./stepX_YYY.exe
edc3b064
JM
252```
253
385a08eb
VS
254### ChucK
255
332611f5 256The ChucK implementation has been tested with ChucK 1.3.5.2.
385a08eb
VS
257
258```
259cd chuck
260./run
261```
edc3b064 262
e7f85ce1 263### Common Lisp
b0e08374 264
e7f85ce1
IA
265The implementation has been tested with SBCL, CCL, CMUCL, GNU CLISP, ECL and
266Allegro CL on Ubuntu 16.04 and Ubuntu 12.04, see
d7f720e6 267the [README](common-lisp/README.org) for more details. Provided you have the
e7f85ce1 268dependencies mentioned installed, do the following to run the implementation
b0e08374
IA
269
270```
e7f85ce1 271cd common-lisp
b0e08374
IA
272make
273./run
274```
275
bcddc3e4 276### Clojure
60154d24 277
aa716df6
JM
278For the most part the Clojure implementation requires Clojure 1.5,
279however, to pass all tests, Clojure 1.8.0-RC4 is required.
280
60154d24
JM
281```
282cd clojure
283lein with-profile +stepX trampoline run
284```
285
891c3f3b
JM
286### CoffeeScript
287
288```
289sudo npm install -g coffee-script
290cd coffee
291coffee ./stepX_YYY
292```
293
58b84dd5 294### Crystal
295
5185c56e 296The Crystal implementation of mal has been tested with Crystal 0.26.1.
6c4dede1 297
58b84dd5 298```
299cd crystal
300crystal run ./stepX_YYY.cr
6c4dede1
JM
301 # OR
302make # needed to run tests
303./stepX_YYY
58b84dd5 304```
305
f82cb965
DM
306### D
307
f82cb965
DM
308The D implementation of mal was tested with GDC 4.8. It requires the GNU
309readline library.
310
311```
312cd d
313make
314./stepX_YYY
315```
316
bcf95720
HT
317### Dart
318
bcf95720
HT
319The Dart implementation has been tested with Dart 1.20.
320
321```
322cd dart
323dart ./stepX_YYY
324```
325
e0b7f668
VS
326### Emacs Lisp
327
e0b7f668
VS
328The Emacs Lisp implementation of mal has been tested with Emacs 24.3
329and 24.5. While there is very basic readline editing (`<backspace>`
330and `C-d` work, `C-c` cancels the process), it is recommended to use
331`rlwrap`.
332
333```
334cd elisp
335emacs -Q --batch --load stepX_YYY.el
336# with full readline support
337rlwrap emacs -Q --batch --load stepX_YYY.el
338```
339
bb526975 340### Elixir
341
bb526975 342The Elixir implementation of mal has been tested with Elixir 1.0.5.
343
344```
345cd elixir
df2ca97b 346mix stepX_YYY
347# Or with readline/line editing functionality:
bb526975 348iex -S mix stepX_YYY
349```
350
f38c7ffa
JB
351### Elm
352
f38c7ffa
JB
353The Elm implementation of mal has been tested with Elm 0.18.0
354
355```
356cd elm
357make stepX_YYY.js
358STEP=stepX_YYY ./run
359```
360
2cc3804b
NF
361### Erlang
362
82484631
JM
363The Erlang implementation of mal requires [Erlang/OTP R17](http://www.erlang.org/download.html)
364and [rebar](https://github.com/rebar/rebar) to build.
2cc3804b
NF
365
366```
367cd erlang
425ef3d7
JM
368make
369 # OR
370MAL_STEP=stepX_YYY rebar compile escriptize # build individual step
2cc3804b
NF
371./stepX_YYY
372```
373
88e934b6
JM
374### ES6 (ECMAScript 6 / ECMAScript 2015)
375
376The ES6 implementation uses the [babel](https://babeljs.io) compiler
377to generate ES5 compatible JavaScript. The generated code has been
378tested with Node 0.12.4.
379
380```
381cd es6
382make
383node build/stepX_YYY.js
384```
385
386
6f78381f
PS
387### F# ###
388
6f78381f
PS
389The F# implementation of mal has been tested on Linux using the Mono
390F# compiler (fsharpc) and the Mono runtime (version 3.12.1). The mono C#
206a1657 391compiler (mcs) is also necessary to compile the readline dependency. All are
6f78381f
PS
392required to build and run the F# implementation.
393
394```
395cd fsharp
396make
397mono ./stepX_YYY.exe
398```
399
5a53c643
JL
400### Factor
401
0fe47e88 402The Factor implementation of mal has been tested with Factor 0.97
07eb827b 403([factorcode.org](http://factorcode.org)).
0fe47e88 404
5a53c643
JL
405```
406cd factor
199b1ce7 407FACTOR_ROOTS=. factor -run=stepX_YYY
5a53c643
JL
408```
409
92708e34
DM
410### Fantom
411
92708e34
DM
412The Fantom implementation of mal has been tested with Fantom 1.0.70.
413
414```
415cd fantom
416make lib/fan/stepX_YYY.pod
417STEP=stepX_YYY ./run
418```
419
96032890
C
420### Forth
421
422```
423cd forth
424gforth stepX_YYY.fs
425```
426
1771ab50
JM
427### Go
428
0fe47e88 429The Go implementation of mal requires that go is installed on on the
fd888612
JM
430path. The implementation has been tested with Go 1.3.1.
431
1771ab50
JM
432```
433cd go
434make
435./stepX_YYY
436```
437
438
7ab0f63e
JM
439### Groovy
440
441The Groovy implementation of mal requires Groovy to run and has been
442tested with Groovy 1.8.6.
443
444```
445cd groovy
446make
447groovy ./stepX_YYY.groovy
448```
449
5a9cda80
JM
450### GNU Guile 2.1+
451
5a9cda80
JM
452```
453cd guile
454guile -L ./ stepX_YYY.scm
455```
7ab0f63e 456
9592d833
VS
457### GNU Smalltalk
458
9592d833
VS
459The Smalltalk implementation of mal has been tested with GNU Smalltalk 3.2.91.
460
461```
b440380f 462cd gnu-smalltalk
9592d833
VS
463./run
464```
465
b76aa73b
JM
466### Haskell
467
f60f33e0
JM
468The Haskell implementation requires the ghc compiler version 7.10.1 or
469later and also the Haskell parsec and readline (or editline) packages.
b76aa73b
JM
470
471```
472cd haskell
473make
474./stepX_YYY
475```
476
2d76e877 477### Haxe (Neko, Python, C++ and JavaScript)
33dec7af
JM
478
479The Haxe implementation of mal requires Haxe version 3.2 to compile.
480Four different Haxe targets are supported: Neko, Python, C++, and
481JavaScript.
482
483```
484cd haxe
485# Neko
486make all-neko
487neko ./stepX_YYY.n
488# Python
489make all-python
490python3 ./stepX_YYY.py
491# C++
492make all-cpp
493./cpp/stepX_YYY
494# JavaScript
495make all-js
496node ./stepX_YYY.js
497```
498
ccab8f59
JM
499### Hy
500
501The Hy implementation of mal has been tested with Hy 0.13.0.
502
503```
504cd hy
505./stepX_YYY.hy
506```
507
61f69fba
DM
508### Io
509
61f69fba
DM
510The Io implementation of mal has been tested with Io version 20110905.
511
512```
513cd io
514io ./stepX_YYY.io
515```
b76aa73b 516
bcddc3e4 517### Java 1.7
60154d24 518
01c97316
JM
519The Java implementation of mal requires maven2 to build.
520
60154d24
JM
521```
522cd java
523mvn compile
524mvn -quiet exec:java -Dexec.mainClass=mal.stepX_YYY
525 # OR
526mvn -quiet exec:java -Dexec.mainClass=mal.stepX_YYY -Dexec.args="CMDLINE_ARGS"
527```
528
39381792 529### JavaScript/Node
60154d24
JM
530
531```
532cd js
54c75382 533npm update
60154d24
JM
534node stepX_YYY.js
535```
536
39381792
JM
537### Julia
538
82484631 539The Julia implementation of mal requires Julia 0.4.
39381792
JM
540
541```
542cd julia
543julia stepX_YYY.jl
544```
545
53c2ea70
JFI
546### Kotlin
547
75787d77 548The Kotlin implementation of mal has been tested with Kotlin 1.0.
53c2ea70
JFI
549
550```
551cd kotlin
552make
553java -jar stepX_YYY.jar
554```
555
0af8fd20
JB
556### LiveScript
557
0af8fd20
JB
558The LiveScript implementation of mal has been tested with LiveScript 1.5.
559
560```
561cd livescript
562make
563node_modules/.bin/lsc stepX_YYY.ls
564```
565
4eb88ef2
DM
566### Logo
567
4eb88ef2
DM
568The Logo implementation of mal has been tested with UCBLogo 6.0.
569
570```
571cd logo
572logo stepX_YYY.lg
573```
574
9d42904e
JM
575### Lua
576
45a71498
JM
577The Lua implementation of mal has been tested with Lua 5.2. The
578implementation requires that luarocks and the lua-rex-pcre library
579are installed.
9d42904e
JM
580
581```
582cd lua
583make # to build and link linenoise.so
584./stepX_YYY.lua
585```
586
bcddc3e4 587### Mal
60154d24
JM
588
589Running the mal implementation of mal involves running stepA of one of
590the other implementations and passing the mal step to run as a command
5d446bd8 591line argument.
60154d24
JM
592
593```
594cd IMPL
595IMPL_STEPA_CMD ../mal/stepX_YYY.mal
596
597```
598
bcddc3e4 599### GNU Make 3.81
60154d24
JM
600
601```
602cd make
603make -f stepX_YYY.mk
604```
605
331ddfed
BD
606### NASM
607
331ddfed
BD
608The NASM implementation of mal is written for x86-64 Linux, and has been tested
609with Linux 3.16.0-4-amd64 and NASM version 2.11.05.
610
611```
612cd nasm
613make
614./stepX_YYY
615```
616
4603f2a9 617### Nim 0.17.0
a2cd0a3a 618
4603f2a9 619The Nim implementation of mal has been tested with Nim 0.17.0.
a2cd0a3a 620
621```
622cd nim
623make
624 # OR
625nimble build
626./stepX_YYY
627```
628
0067158f
JM
629### Object Pascal
630
631The Object Pascal implementation of mal has been built and tested on
632Linux using the Free Pascal compiler version 2.6.2 and 2.6.4.
633
634```
635cd objpascal
636make
637./stepX_YYY
638```
639
7cae6e6f
JM
640### Objective C
641
642The Objective C implementation of mal has been built and tested on
2faae94c
JM
643Linux using clang/LLVM 3.6. It has also been built and tested on OS
644X using XCode 7.
7cae6e6f
JM
645
646```
647cd objc
648make
649./stepX_YYY
650```
651
bc6448bc
C
652### OCaml 4.01.0
653
654```
655cd ocaml
656make
657./stepX_YYY
658```
659
4bb2ab37 660### MatLab (GNU Octave and MATLAB)
8a9d0a8a 661
4bb2ab37
JM
662The MatLab implementation has been tested with GNU Octave 4.2.1.
663It has also been tested with MATLAB version R2014a on Linux. Note that
664MATLAB is a commercial product.
8a9d0a8a
JM
665
666```
667cd matlab
668./stepX_YYY
4bb2ab37 669octave -q --no-gui --no-history --eval "stepX_YYY();quit;"
8a9d0a8a
JM
670matlab -nodisplay -nosplash -nodesktop -nojvm -r "stepX_YYY();quit;"
671 # OR with command line arguments
4bb2ab37 672octave -q --no-gui --no-history --eval "stepX_YYY('arg1','arg2');quit;"
8a9d0a8a
JM
673matlab -nodisplay -nosplash -nodesktop -nojvm -r "stepX_YYY('arg1','arg2');quit;"
674```
675
1218ce98
JM
676### miniMAL
677
678[miniMAL](https://github.com/kanaka/miniMAL) is small Lisp interpreter
679implemented in less than 1024 bytes of JavaScript. To run the miniMAL
680implementation of mal you need to download/install the miniMAL
681interpreter (which requires Node.js).
682```
1218ce98 683cd miniMAL
478fd9ce
JM
684# Download miniMAL and dependencies
685npm install
686export PATH=`pwd`/node_modules/minimal-lisp/:$PATH
687# Now run mal implementation in miniMAL
1218ce98
JM
688miniMAL ./stepX_YYY
689```
690
9b1563a3 691### Perl 5.8
9e5b2151
JM
692
693For readline line editing support, install Term::ReadLine::Perl or
694Term::ReadLine::Gnu from CPAN.
695
696```
697cd perl
698perl stepX_YYY.pl
699```
700
a7081401
HÖS
701### Perl 6
702
a7081401
HÖS
703The Perl 6 implementation was tested on Rakudo Perl 6 2016.04.
704
705```
706cd perl6
707perl6 stepX_YYY.pl
708```
9e5b2151 709
bcddc3e4 710### PHP 5.3
60154d24 711
01c97316
JM
712The PHP implementation of mal requires the php command line interface
713to run.
714
60154d24
JM
715```
716cd php
717php stepX_YYY.php
718```
719
b6263859
VS
720### Picolisp
721
b6263859
VS
722The Picolisp implementation requires libreadline and Picolisp 3.1.11
723or later.
724
725```
b440380f 726cd picolisp
b6263859
VS
727./run
728```
729
b25bf8d8
JM
730### PL/pgSQL (Postgres SQL Procedural Language)
731
b88bb764
JM
732The PL/pgSQL implementation of mal requires a running Postgres server
733(the "kanaka/mal-test-plpgsql" docker image automatically starts
734a Postgres server). The implementation connects to the Postgres server
735and create a database named "mal" to store tables and stored
736procedures. The wrapper script uses the psql command to connect to the
737server and defaults to the user "postgres" but this can be overridden
738with the PSQL_USER environment variable. A password can be specified
739using the PGPASSWORD environment variable. The implementation has been
740tested with Postgres 9.4.
b25bf8d8
JM
741
742```
743cd plpgsql
744./wrap.sh stepX_YYY.sql
b88bb764
JM
745 # OR
746PSQL_USER=myuser PGPASSWORD=mypass ./wrap.sh stepX_YYY.sql
747```
748
749### PL/SQL (Oracle SQL Procedural Language)
750
751The PL/pgSQL implementation of mal requires a running Oracle DB
752server (the "kanaka/mal-test-plsql" docker image automatically
753starts an Oracle Express server). The implementation connects to the
754Oracle server to create types, tables and stored procedures. The
755default SQL*Plus logon value (username/password@connect_identifier) is
756"system/oracle" but this can be overridden with the ORACLE_LOGON
757environment variable. The implementation has been tested with Oracle
758Express Edition 11g Release 2. Note that any SQL*Plus connection
759warnings (user password expiration, etc) will interfere with the
760ability of the wrapper script to communicate with the DB.
761
762```
763cd plsql
764./wrap.sh stepX_YYY.sql
765 # OR
766ORACLE_LOGON=myuser/mypass@ORCL ./wrap.sh stepX_YYY.sql
b25bf8d8
JM
767```
768
5c34565f
JM
769### Postscript Level 2/3
770
771The Postscript implementation of mal requires ghostscript to run. It
772has been tested with ghostscript 9.10.
773
774```
775cd ps
776gs -q -dNODISPLAY -I./ stepX_YYY.ps
777```
778
779### PowerShell
780
781The PowerShell implementation of mal requires the PowerShell script
782language. It has been tested with PowerShell 6.0.0 Alpha 9 on Linux.
783
784```
785cd powershell
786powershell ./stepX_YYY.ps1
787```
788
2d76e877 789### Python (2.X and 3.X)
60154d24
JM
790
791```
792cd python
793python stepX_YYY.py
794```
8adb0827 795
23e38cd2
JM
796### RPython
797
798You must have [rpython](https://rpython.readthedocs.org/) on your path
799(included with [pypy](https://bitbucket.org/pypy/pypy/)).
800
801```
802cd rpython
4e8d7c28 803make # this takes a very long time
23e38cd2
JM
804./stepX_YYY
805```
806
9b3362e8
JM
807### R
808
809The R implementation of mal requires R (r-base-core) to run.
810
811```
812cd r
9d42904e 813make libs # to download and build rdyncall
f5223195
JM
814Rscript stepX_YYY.r
815```
816
817### Racket (5.3)
818
819The Racket implementation of mal requires the Racket
820compiler/interpreter to run.
821
822```
823cd racket
3796240a 824./stepX_YYY.rkt
9b3362e8
JM
825```
826
44a3e2ef
DM
827### Rexx
828
44a3e2ef
DM
829The Rexx implementation of mal has been tested with Regina Rexx 3.6.
830
831```
832cd rexx
833make
834rexx -a ./stepX_YYY.rexxpp
835```
836
107d9694 837### Ruby (1.9+)
8adb0827
JM
838
839```
840cd ruby
841ruby stepX_YYY.rb
842```
592eb5cf 843
9106a221 844### Rust (1.0.0 nightly)
abdd56eb
JM
845
846The rust implementation of mal requires the rust compiler and build
847tool (cargo) to build.
848
849```
850cd rust
bbeb1b87 851cargo run --release --bin stepX_YYY
abdd56eb
JM
852```
853
821930db
JM
854### Scala ###
855
856Install scala and sbt (http://www.scala-sbt.org/0.13/tutorial/Installing-sbt-on-Linux.html):
857
858```
859cd scala
860sbt 'run-main stepX_YYY'
861 # OR
862sbt compile
863scala -classpath target/scala*/classes stepX_YYY
864```
865
6c0968a6 866### Scheme (R7RS) ###
ff3a8bf8 867
ff3a8bf8
VS
868The Scheme implementation of mal has been tested with Chibi-Scheme
8690.7.3, Kawa 2.4, Gauche 0.9.5, CHICKEN 4.11.0, Sagittarius 0.8.3,
870Cyclone 0.6.3 (Git version) and Foment 0.4 (Git version). You should
871be able to get it running on other conforming R7RS implementations
872after figuring out how libraries are loaded and adjusting the
873`Makefile` and `run` script accordingly.
874
875```
a7b8df67 876cd scheme
ff3a8bf8
VS
877make symlinks
878# chibi
6c0968a6 879scheme_MODE=chibi ./run
ff3a8bf8
VS
880# kawa
881make kawa
6c0968a6 882scheme_MODE=kawa ./run
ff3a8bf8 883# gauche
6c0968a6 884scheme_MODE=gauche ./run
ff3a8bf8
VS
885# chicken
886make chicken
6c0968a6 887scheme_MODE=chicken ./run
ff3a8bf8 888# sagittarius
6c0968a6 889scheme_MODE=sagittarius ./run
ff3a8bf8
VS
890# cyclone
891make cyclone
6c0968a6 892scheme_MODE=cyclone ./run
ff3a8bf8 893# foment
6c0968a6 894scheme_MODE=foment ./run
ff3a8bf8
VS
895```
896
034e82ad
DM
897### Skew ###
898
034e82ad
DM
899The Skew implementation of mal has been tested with Skew 0.7.42.
900
901```
902cd skew
903make
904node stepX_YYY.js
905```
906
907
2539e6af
KR
908### Swift
909
e31349f6
KR
910The Swift implementation of mal requires the Swift 2.0 compiler (XCode
9117.0) to build. Older versions will not work due to changes in the
912language and standard library.
8b142f08 913
2539e6af
KR
914```
915cd swift
916make
917./stepX_YYY
918```
919
ea1395aa
JM
920### Swift 3
921
922The Swift 3 implementation of mal requires the Swift 3.0 compiler. It
a3a6f680 923has been tested with Swift 3 Preview 3.
ea1395aa
JM
924
925```
926cd swift3
927make
928./stepX_YYY
929```
930
54d9903c
DM
931### Tcl 8.6
932
54d9903c
DM
933The Tcl implementation of mal requires Tcl 8.6 to run. For readline line
934editing support, install tclreadline.
935
936```
937cd tcl
938tclsh ./stepX_YYY.tcl
939```
940
c527d565 941### TypeScript
942
943The TypeScript implementation of mal requires the TypeScript 2.2 compiler.
db885df9 944It has been tested with Node.js v6.
c527d565 945
946```
947cd ts
948make
949node ./stepX_YYY.js
950```
951
36e91db4
DM
952### VHDL
953
36e91db4
DM
954The VHDL implementation of mal has been tested with GHDL 0.29.
955
956```
957cd vhdl
958make
959./run_vhdl.sh ./stepX_YYY
960```
961
50a964ce
DM
962### Vimscript
963
aa62cbda 964The Vimscript implementation of mal requires Vim 8.0 to run.
50a964ce
DM
965
966```
967cd vimscript
968./run_vimscript.sh ./stepX_YYY.vim
969```
970
ee7cd585
JM
971### Visual Basic.NET ###
972
973The VB.NET implementation of mal has been tested on Linux using the Mono
974VB compiler (vbnc) and the Mono runtime (version 2.10.8.1). Both are
975required to build and run the VB.NET implementation.
976
977```
978cd vb
979make
980mono ./stepX_YYY.exe
981```
982
d72395aa
JM
983### WebAssembly (wasm) ###
984
27359631 985The WebAssembly implementation is written in
d72395aa
JM
986[Wam](https://github.com/kanaka/wam) (WebAssembly Macro language) and
987runs under the [wac/wace](https://github.com/kanaka/wac) WebAssembly
988runtime.
989
990```
991cd wasm
992make
993wace ./stepX_YYY.wasm
994```
995
a3665311
DM
996### Yorick
997
a3665311
DM
998The Yorick implementation of mal was tested on Yorick 2.2.04.
999
1000```
1001cd yorick
1002yorick -batch ./stepX_YYY.i
1003```
1004
ee7cd585
JM
1005
1006
592eb5cf
JM
1007## Running tests
1008
d57f74df
JM
1009The top level Makefile has a number of useful targets to assist with
1010implementation development and testing. The `help` target provides
1011a list of the targets and options:
1012
1013```
1014make help
1015```
1016
294aba2c
JM
1017### Functional tests
1018
eaa6ceb4 1019The are over 600 generic functional tests (for all implementations)
294aba2c
JM
1020in the `tests/` directory. Each step has a corresponding test file
1021containing tests specific to that step. The `runtest.py` test harness
bd62ff74
JM
1022launches a Mal step implementation and then feeds the tests one at
1023a time to the implementation and compares the output/return value to
1024the expected output/return value.
592eb5cf 1025
592eb5cf
JM
1026* To run all the tests across all implementations (be prepared to wait):
1027
1028```
1029make test
1030```
1031
1032* To run all tests against a single implementation:
1033
1034```
e5737b08 1035make "test^IMPL"
592eb5cf
JM
1036
1037# e.g.
e5737b08
SL
1038make "test^clojure"
1039make "test^js"
592eb5cf
JM
1040```
1041
1042* To run tests for a single step against all implementations:
1043
1044```
e5737b08 1045make "test^stepX"
592eb5cf
JM
1046
1047# e.g.
e5737b08
SL
1048make "test^step2"
1049make "test^step7"
592eb5cf
JM
1050```
1051
4c58cd4e 1052* To run tests for a specific step against a single implementation:
592eb5cf
JM
1053
1054```
e5737b08 1055make "test^IMPL^stepX"
592eb5cf
JM
1056
1057# e.g
e5737b08
SL
1058make "test^ruby^step3"
1059make "test^ps^step4"
592eb5cf 1060```
fd888612 1061
294aba2c
JM
1062### Self-hosted functional tests
1063
1064* To run the functional tests in self-hosted mode, you specify `mal`
1065 as the test implementation and use the `MAL_IMPL` make variable
1066 to change the underlying host language (default is JavaScript):
1067```
e5737b08 1068make MAL_IMPL=IMPL "test^mal^step2"
294aba2c
JM
1069
1070# e.g.
e5737b08
SL
1071make "test^mal^step2" # js is default
1072make MAL_IMPL=ruby "test^mal^step2"
1073make MAL_IMPL=python "test^mal^step2"
294aba2c
JM
1074```
1075
854cf2a6
DM
1076### Starting the REPL
1077
1078* To start the REPL of an implementation in a specific step:
1079
1080```
1081make "repl^IMPL^stepX"
1082
1083# e.g
1084make "repl^ruby^step3"
1085make "repl^ps^step4"
1086```
1087
1088* If you omit the step, then `stepA` is used:
1089
1090```
1091make "repl^IMPL"
1092
1093# e.g
1094make "repl^ruby"
1095make "repl^ps"
1096```
1097
1098* To start the REPL of the self-hosted implementation, specify `mal` as the
1099 REPL implementation and use the `MAL_IMPL` make variable to change the
1100 underlying host language (default is JavaScript):
1101```
1102make MAL_IMPL=IMPL "repl^mal^stepX"
1103
1104# e.g.
1105make "repl^mal^step2" # js is default
1106make MAL_IMPL=ruby "repl^mal^step2"
1107make MAL_IMPL=python "repl^mal"
1108```
294aba2c
JM
1109
1110### Performance tests
1111
8569b2af
JM
1112Warning: These performance tests are neither statistically valid nor
1113comprehensive; runtime performance is a not a primary goal of mal. If
1114you draw any serious conclusions from these performance tests, then
1115please contact me about some amazing oceanfront property in Kansas
1116that I'm willing to sell you for cheap.
1117
294aba2c
JM
1118* To run performance tests against a single implementation:
1119```
e5737b08 1120make "perf^IMPL"
294aba2c
JM
1121
1122# e.g.
e5737b08 1123make "perf^js"
294aba2c
JM
1124```
1125
1126* To run performance tests against all implementations:
1127```
e5737b08 1128make "perf"
294aba2c
JM
1129```
1130
1131### Generating language statistics
1132
4c58cd4e 1133* To report line and byte statistics for a single implementation:
294aba2c 1134```
e5737b08 1135make "stats^IMPL"
294aba2c
JM
1136
1137# e.g.
e5737b08 1138make "stats^js"
294aba2c
JM
1139```
1140
4c58cd4e 1141* To report line and bytes statistics for general Lisp code (env, core
294aba2c
JM
1142 and stepA):
1143```
e5737b08 1144make "stats-lisp^IMPL"
294aba2c
JM
1145
1146# e.g.
e5737b08 1147make "stats-lisp^js"
294aba2c
JM
1148```
1149
5b207de7 1150## Dockerized testing
75363567 1151
5b207de7
JM
1152Every implementation directory contains a Dockerfile to create
1153a docker image containing all the dependencies for that
1154implementation. In addition, the top-level Makefile contains support
1155for running the tests target (and perf, stats, repl, etc) within
1156a docker container for that implementation by passing *"DOCKERIZE=1"*
1157on the make command line. For example:
75363567 1158
75363567 1159```
5b207de7 1160make DOCKERIZE=1 "test^js^step3"
75363567
JM
1161```
1162
5b207de7
JM
1163Existing implementations already have docker images built and pushed
1164to the docker registry. However, if
1165you wish to build or rebuild a docker image locally, the toplevel
1166Makefile provides a rule for building docker images:
1167
75363567 1168```
5b207de7
JM
1169make "docker-build^IMPL"
1170```
1171
75363567
JM
1172
1173**Notes**:
5b207de7
JM
1174* Docker images are named *"kanaka/mal-test-IMPL"*
1175* JVM-based language implementations (Groovy, Java, Clojure, Scala):
70cefa38
RM
1176 you will probably need to run this command once manually
1177 first `make DOCKERIZE=1 "repl^IMPL"` before you can run tests because
5b207de7 1178 runtime dependencies need to be downloaded to avoid the tests timing
70cefa38 1179 out. These dependencies are downloaded to dot-files in the /mal
5b207de7 1180 directory so they will persist between runs.
75363567 1181
07734c09
JM
1182
1183## External Implementations
1184
1185The following implementations are maintained as separate projects:
1186
1187### HolyC
1188
1189* [by Alexander Bagnalla](https://github.com/bagnalla/holyc_mal)
1190
1191### Rust
1192
1193* [by Tim Morgan](https://github.com/seven1m/mal-rust)
1194* [by vi](https://github.com/vi/mal-rust-vi) - using [Pest](https://pest.rs/) grammar, not using typical Mal infrastructure (cargo-ized steps and built-in converted tests).
1195
1196
daafc18d 1197## Other mal Projects
b0687d36
CM
1198
1199 * [malc](https://github.com/dubek/malc) - Mal (Make A Lisp) compiler. Compiles a Mal program to LLVM assembly language, then binary.
dad737ad 1200 * [malcc](https://git.sr.ht/~tim/malcc) (@seven1m) - malcc is an incremental compiler implementation for the Mal language. It uses the Tiny C Compiler as the compiler backend and has full support for the Mal language, including macros, tail-call elimination, and even run-time eval.
b0687d36 1201 * [frock](https://github.com/chr15m/frock) - Clojure-flavoured PHP. Uses mal/php to run programs.
294aba2c 1202
fd888612
JM
1203## License
1204
1205Mal (make-a-lisp) is licensed under the MPL 2.0 (Mozilla Public
1206License 2.0). See LICENSE.txt for more details.