diff options
Diffstat (limited to 'src/lisp/test.lisp')
-rw-r--r-- | src/lisp/test.lisp | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/src/lisp/test.lisp b/src/lisp/test.lisp index 35d98a49..b653e49c 100644 --- a/src/lisp/test.lisp +++ b/src/lisp/test.lisp @@ -4,6 +4,19 @@ (defn f1 (x) x) +(defn f2 (x y) y) + +(defn f5 (a b c d e) (d e) (f1 a)) + + (defn* f01 (()) - ((x) x))
\ No newline at end of file + ((x) x)) + +(defn fa (x) + (.foo x)) + +(defn fk (x) + (:foo x)) + +(defn fr (a b & c) c)
\ No newline at end of file |