This commit is contained in:
eli 2022-09-04 19:52:34 -04:00
parent 4e641ab9e0
commit 0ca838b1ca
2 changed files with 8 additions and 2 deletions

View File

@ -2,17 +2,19 @@
Common lisp isn't a single language, but rather a standard. As such, there are many implementations of common lisp kicking around that are (mostly) compatible.
Like [[scheme]], common lisp support [[repl]] driven dev.
There are 2 installed on [[sans]].
## sbcl
Sbcl is the cream of the crop, go-to common lisp implementation. It is a great starting place.
sbcl is the cream of the crop, go-to common lisp implementation. It is a great starting place.
Fire up the repl by invoking sbcl
## ecl
Ecl is a newer contender in the space. Ecl is a bit more portable than sbcl.
ecl is a newer contender in the space. Ecl is a bit more portable than sbcl.
Get this repl going by entering ecl at the command line.

View File

@ -2,5 +2,9 @@
Kona is an open source implementation of the APL-derived K. K, like APL is an array programming language but it uses ascii characters...so it is easier to type, if not read.
Launch it by entering the letter k at the command line.
This will drop you into the kona [[repl]]. To exit the interpreter enter \\ and then hit enter. Enter a single \ to see the kona help text.
=> https://github.com/kevinlawler/kona/wiki kona wiki
=> https://nsl.com/k/training/idioms_K3.pdf learning K programming idiom by idiom