We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
(letrec ((even? (lambda (n) (if (zero? n) #t (odd? (- n 1))))) (odd? (lambda (n) (if (zero? n) #f (even? (- n 1)))))) (even? 14))
run success
(letrec ((even? (lambda (n) (if (zero? n) #t (odd? (- n 1))))) (odd? (lambda (n) (if (zero? n) #f (even? (- n 1)))))) (even? 15))
run fail with bus error
bus error
[1] 17930 bus error node r4rs_test.js
The text was updated successfully, but these errors were encountered:
(letrec ((fib (lambda (n) (cond ((zero? n) 1) ((= 1 n) 1) (else (+ (fib (- n 1)) (fib (- n 2)))))))) (fib 9))
run fail
(letrec ((fib (lambda (n) (cond ((zero? n) 1) ((= 1 n) 1) (else (+ (fib (- n 1)) (fib (- n 2)))))))) (fib 10))
Sorry, something went wrong.
`(a `(b ,(+ 1 2) ,(foo ,(+ 1 3) d) e) f)
(let ((name1 'x) (name2 'y)) `(a `(b ,,name1 ,',name2 d) e))
Successfully merging a pull request may close this issue.
run success
run fail with
bus error
The text was updated successfully, but these errors were encountered: