diff options
Diffstat (limited to 'test/def.resp')
-rw-r--r-- | test/def.resp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/def.resp b/test/def.resp index dd9a0c8..52605b0 100644 --- a/test/def.resp +++ b/test/def.resp @@ -1,7 +1,7 @@ (def foo (fn (x) - (def y 2) - (def z 3) + (def y x) + (def z (+ x 1)) z)) (foo 3) |