Git - code.swisschili.sh
code.swisschili.sh
/
bluejay
/
e9fec8be6c323b9705e807da460c555f202f641e
/
.
/
src
/
lisp
/
test.lisp
blob: f51ef99ad1f86269bc82dc1c7c2557d0185b3856 [
file
] [
log
] [
blame
]
(
defun
add-two
(
a
)
(
+
a
2
))
(
defun
calls-gc
(
whatever
)
(
print whatever
)
(
gc
))
(
defun
main
(
)
(
let1
(
a
(
add-two
3
))
(
print
"a is"
)
(
print a
))
(
let1
(
unused-but-bound
(
cons
5
6
))
(
let1
(
val
(
cons
1
(
cons
2
(
cons
3
nil
))))
(
calls-gc val
))))