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
See also #34 (comment) by @jessealama
(define/contract x integer? 1)
should be formatted that way, not
Also, we probably should support
(define/contract (f x) (-> integer? integer?) (+ x 1))
The problem is that with our current pretty printer, this style will almost always be preferred over
even though the first line is really long. Our new pretty printer can fix this problem, but let's wait for now.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
See also #34 (comment) by @jessealama
should be formatted that way, not
Also, we probably should support
The problem is that with our current pretty printer, this style will almost always be preferred over
even though the first line is really long. Our new pretty printer can fix this problem, but let's wait for now.
The text was updated successfully, but these errors were encountered: