Git - code.swisschili.sh
code.swisschili.sh
/
bluejay
/
refs/heads/master
/
.
/
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
))