Its core lives in Lisp dialects like Emacs Lisp just fine.
Try GNU Emacs and the REPL:
M-x ielm
*** Welcome to IELM *** Type (describe-mode) for help.
ELISP> (append '(this is a Lisp) '(REPL))
(this is a Lisp REPL)
ELISP> (cons 'This (append '(is a) (list 'Lisp 'REPL)))
(This is a Lisp REPL)
This code is from McCarthy's Lisp 1.5 Programmer's manual, from 1962, running in Common Lisp:
CL-USER 6 > (defun my-length (l)
(prog (u v)
(setq v 0)
(setq u l)
a
(cond ((null u) (return v)))
(setq u (cdr u))
(setq v (+ v 1))
(go a)))
MY-LENGTH
CL-USER 7 > (my-length '(1 2 3 4 5))
5
That's why it's called a 'Lisp' -> it runs Lisp code.
Ah okay that’s cool then. I thought you were calling out some low level implementation detail of lisp I had overlooked. I’m trying to build a lisp as the intermediate of my new toy programming language. So I wanna get that right.
The two downsides mentioned regarding FP are not an issue if you are using a REPL and a Lisp:
- excellent IDE support, since you are working inside your program (which can be inspected)
- paradigm a la carte:
you want named arguments? Go for it (split :string "foo,bar" :by ",")
you want different invocation syntax? (3 + 4) or (3 4 +) is just a macro away
and a bit easier to read than: (this Int).square | Int = this.*(this) YMMV
you want to define your data shape? use your favorite schema language
you want monads? just use a library
you want go-routines? just use a library
you want compile time types? just use a library
reply