mirror of
https://github.com/dschmenk/PLASMA.git
synced 2025-01-07 00:29:34 +00:00
DRAWL bootable floppy image and samples
This commit is contained in:
parent
abb1738c06
commit
e48ce3d2dd
@ -1,6 +1,6 @@
|
||||
# LISP 1.5 implemented in PLASMA
|
||||
|
||||
LISP interpreted in a bytecode VM runnin on a 1 MHz 6502 is going to be sssllllooooowwwww. So I called this implementation DRAWL in keeping with the speech impediment theme.
|
||||
LISP interpreted on a bytecode VM running on a 1 MHz 6502 is going to be sssllllooooowwwww. So I called this implementation DRAWL in keeping with the speech impediment theme.
|
||||
|
||||
DRAWL represents an exploration REPL language for the PLASMA environment.
|
||||
|
||||
|
BIN
images/apple/DRAWL.po
Normal file
BIN
images/apple/DRAWL.po
Normal file
Binary file not shown.
8
src/lisp/fact.lisp
Normal file
8
src/lisp/fact.lisp
Normal file
@ -0,0 +1,8 @@
|
||||
(label fact
|
||||
(lambda (n)
|
||||
(cond
|
||||
((eq n 0) , 1)
|
||||
(t , (* n (fact (- n 1))))
|
||||
)
|
||||
)
|
||||
)
|
Loading…
Reference in New Issue
Block a user