Lispex manual
(Lispex)
( parens are punctuation, recursion is rhyme )
The language that captures the shape of thought.
Plate I
Code is data, printed plainly.
LISPEX
(define program '(+ 1 2 3))
(eval program)Form factorial
LISPEX
(define (factorial n)
(if (= n 0)
1
(* n (factorial (- n 1)))))
(factorial 5)Datum quoted form
LISPEX
(define form
'(map (lambda (n) (* n 10))
'(1 2 3 4)))
formLispex keeps a small R7RS-shaped surface and carries it into the Lena Code workflow.
KO
생각의 원형을 담는 언어.
EN
The language that captures the shape of thought.
RU
Язык, воплощающий форму мысли.