Git - code.swisschili.sh
code.swisschili.sh
/
bluejay
/
35558856164fb845a2329bc5e8a46cd616bdc5a3
/
.
/
lib
/
lisp
/
repl
/
repl.lisp
blob: 97206dd17d1ce5005360da240617210f844efa6e [
file
] [
log
] [
blame
]
swissChili
7e1393c
2021-07-07 12:59:12 -0700
[
diff
] [
blame
]
1
(
defun
repl
(
)
2
(
let1
(
val
(
read
))
3
(
when val
4
(
print
(
eval val
))
5
(
repl
))))
6
7
(
defun
main
(
)
8
(
print
"Welcome to the Bluejay REPL!"
)
9
(
repl
))