Git - code.swisschili.sh
code.swisschili.sh
/
bluejay
/
7e1393c8f962e222d61a84f4f78e30ce028dc45b
/
.
/
src
/
lisp
/
test-args.lisp
blob: 14364a8ceaae33ac2e4b564cdfd38425542f5e3c [
file
] [
log
] [
blame
]
(
defun
with-optional
(
required
(
optional
3
))
(
+
required optional
))
(
defun
main
(
)
(
when
t
(
print
(
with-optional
2
))
(
print
(
with-optional
2
4
))))