diff options
author | Rich Hickey <richhickey@gmail.com> | 2006-05-03 11:49:53 +0000 |
---|---|---|
committer | Rich Hickey <richhickey@gmail.com> | 2006-05-03 11:49:53 +0000 |
commit | 66a1be8e45bb2aac3efdefa50a028d0851b6c9e8 (patch) | |
tree | a51f39a6c87a0a2edc4736ca11c31a99fdca7294 /src/lisp/test.lisp | |
parent | a9576eaea72abbc2ffb144c8e1d249c210622d7d (diff) |
fixed global binding references
Diffstat (limited to 'src/lisp/test.lisp')
-rw-r--r-- | src/lisp/test.lisp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lisp/test.lisp b/src/lisp/test.lisp index 16c047bd..128eecda 100644 --- a/src/lisp/test.lisp +++ b/src/lisp/test.lisp @@ -81,4 +81,7 @@ (do ((a b a) (b c b)) (c b) - a b c))
\ No newline at end of file + a b c)) + +(defn fg (x) + y) |