diff --git a/testdata/nTimes.scm b/testdata/nTimes.scm index 974fe27..532e20c 100644 --- a/testdata/nTimes.scm +++ b/testdata/nTimes.scm @@ -1,4 +1,4 @@ -(define continuation) +(define continuation #f) (define counter 0) (define (n-times times func x) @@ -14,4 +14,4 @@ (write-string (number->string (n-times 4 mul2-store8 1))) (newline) -(if (= counter 5) (write-string (number->string (continuation 5)))) \ No newline at end of file +(if (= counter 5) (write-string (number->string (continuation 5))))