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
Hi,
I'm starting to read the book and would like to play with examples along - using DrRacket. However,
#lang Racket (or R5RS) (load "/tmp/CodeFromTheReasonedSchemer2ndEd/trs2-impl.scm")
leads to an error:
/tmp/CodeFromTheReasonedSchemer2ndEd/trs2-impl.scm:20:0: #%top-interaction: unbound identifier; also, no #%app syntax transformer is bound in: #%top-interaction
How can I use trs2-impl.scm implementation in DrRacket?
Thank you!
The text was updated successfully, but these errors were encountered:
Here is a fix:
trs2-impl.scm
; file trs2-impl.rkt #lang racket (provide run run* var? == conj disj succeed fail fresh conde conda condu )
require
#lang racket ; This assumes `trs2-impl.scm` is in your home directory, modify as needed. (require "trs2-impl.scm") (run* q (disj (== q 5) (== q 6)))
Sorry, something went wrong.
Yes, this solves the problem. Thank you!
No branches or pull requests
Hi,
I'm starting to read the book and would like to play with examples along - using DrRacket.
However,
leads to an error:
How can I use trs2-impl.scm implementation in DrRacket?
Thank you!
The text was updated successfully, but these errors were encountered: