Git - code.swisschili.sh
code.swisschili.sh
/
bluejay
/
53472e87d861008bbdee7cdcc4d758a48f98d868
/
.
/
src
/
lisp
/
test.lisp
blob: 82e5955dfc943fdda8ab636cef627e5a9c437483 [
file
] [
log
] [
blame
]
(
defun
two-plus-two
(
)
(
+
2
2
))
(
defun
main
(
)
(
print
"64 / (2 + 2) ="
)
(
print
(
/
64
(
two-plus-two
)))
(
print
nil
))