1
0
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:
David Schmenk 2024-07-09 12:35:21 -07:00
parent abb1738c06
commit e48ce3d2dd
3 changed files with 9 additions and 1 deletions

View File

@ -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

Binary file not shown.

8
src/lisp/fact.lisp Normal file
View File

@ -0,0 +1,8 @@
(label fact
(lambda (n)
(cond
((eq n 0) , 1)
(t , (* n (fact (- n 1))))
)
)
)