diff options
author | Rich Hickey <richhickey@gmail.com> | 2006-04-28 19:59:23 +0000 |
---|---|---|
committer | Rich Hickey <richhickey@gmail.com> | 2006-04-28 19:59:23 +0000 |
commit | 5fe51069a1c0f1bdbd61f0e5dcf9021f0a89da25 (patch) | |
tree | fbfa8c4ade228371497c24086101db4f806166e5 /src/lisp/test.lisp | |
parent | be2107e6816da54623058243797e6c52566f8f05 (diff) |
added support for invoke calls
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 |