Git - code.swisschili.sh
code.swisschili.sh
/
bluejay
/
8b5ec7a9a45e19ceb7633371fa19f1fa6e7252cd
/
.
/
lib
/
lisp
/
repl
/
repl.lisp
blob: 97206dd17d1ce5005360da240617210f844efa6e [
file
] [
log
] [
blame
]
(
defun
repl
(
)
(
let1
(
val
(
read
))
(
when val
(
print
(
eval val
))
(
repl
))))
(
defun
main
(
)
(
print
"Welcome to the Bluejay REPL!"
)
(
repl
))