Git - code.swisschili.sh
code.swisschili.sh
/
bluejay
/
7e1393c8f962e222d61a84f4f78e30ce028dc45b
/
.
/
src
/
lisp
/
test-args.lisp
blob: 14364a8ceaae33ac2e4b564cdfd38425542f5e3c [
file
] [
log
] [
blame
]
swissChili
15f1cae
2021-07-05 19:08:47 -0700
[
diff
] [
blame
]
1
(
defun
with-optional
(
required
(
optional
3
))
2
(
+
required optional
))
3
4
(
defun
main
(
)
5
(
when
t
6
(
print
(
with-optional
2
))
7
(
print
(
with-optional
2
4
))))