diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/boot.clj | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/boot.clj b/src/boot.clj index cf5d2321..cea9fcc3 100644 --- a/src/boot.clj +++ b/src/boot.clj @@ -110,8 +110,8 @@ ([] 0) ([x] x) ([x y] (. Num (add x y))) - ([x y & rest] - (apply thisfn (thisfn x y) rest))) + ([x y & more] + (apply thisfn (thisfn x y) more))) (defn * ([] 1) |