Git - code.swisschili.sh
code.swisschili.sh
/
bluejay
/
a820dea46a0db20f69a3243c20dec4566c646bff
/
.
/
src
/
lisp
/
test.lisp
blob: 6f4abb83ac6917b2ab0a5614e49d8aaf7a483e3a [
file
] [
log
] [
blame
]
(
defun
two-plus-two
(
)
(
+
2
2
))
(
defun
hmm-main
(
)
(
print
"64 / (2 + 2) ="
)
(
print
(
/
64
(
two-plus-two
)))
(
print
nil
))
(
defun
main
(
)
(
if
t
(
print
1
)
(
print
2
)))