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
Racket allows to use custom readers with #lang. For example:
#lang
#lang sweet-exp racket define (fact n) if (zero? n) 1 {n * (fact {n - 1})}
Unfortunately, this does not work so well with REPL:
> + 2 2 #<procedure:+> 2 2
It would be nice to convert selection into an s-exp before sending it to REPL.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Racket allows to use custom readers with
#lang
. For example:Unfortunately, this does not work so well with REPL:
It would be nice to convert selection into an s-exp before sending it to REPL.
The text was updated successfully, but these errors were encountered: