aboutsummaryrefslogtreecommitdiffstats
path: root/test/closure.resp
diff options
context:
space:
mode:
Diffstat (limited to 'test/closure.resp')
-rw-r--r--test/closure.resp3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/closure.resp b/test/closure.resp
index fb5a41d..8dad1c1 100644
--- a/test/closure.resp
+++ b/test/closure.resp
@@ -1,4 +1,5 @@
-(def (multiplier factor) (fn (x) (* (+ x 0) factor)))
+(def (multiplier factor)
+ (fn (x) (* (+ x 0) factor)))
(def doubler (multiplier 2))