diff options
author | Rich Hickey <richhickey@gmail.com> | 2006-04-26 18:58:57 +0000 |
---|---|---|
committer | Rich Hickey <richhickey@gmail.com> | 2006-04-26 18:58:57 +0000 |
commit | 8bdcea4f32a37bb7bb48bbf0e3be09708648b88d (patch) | |
tree | ead7d30c5a9becbdd84c4ab00f725286711e94b9 /src/lisp/test.lisp | |
parent | 15076657d96da2d9332ea95d2027b6289ce87ef9 (diff) |
can generate empty fns, added test.lisp
Diffstat (limited to 'src/lisp/test.lisp')
-rw-r--r-- | src/lisp/test.lisp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/lisp/test.lisp b/src/lisp/test.lisp new file mode 100644 index 00000000..35d98a49 --- /dev/null +++ b/src/lisp/test.lisp @@ -0,0 +1,9 @@ +(in-module "clojure") + +(defn f0 ()) + +(defn f1 (x) x) + +(defn* f01 + (()) + ((x) x))
\ No newline at end of file |