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, Going through the code of raven.sc I've noticed that two different are used when closing s-expressions
(if bla (do this) (do that))
vs.
(if bla (do this) (do that) )
when it comes to let expressions, there is
(let ((x a)))
(let ([x a]))
Are there any particular reasons which led to these different styles?
The text was updated successfully, but these errors were encountered:
I think it's no reason but two particular code style of contributors.
for me, it's the first one.
Sorry, something went wrong.
No branches or pull requests
hi,
Going through the code of raven.sc I've noticed that two different are used when closing s-expressions
vs.
when it comes to let expressions, there is
vs.
Are there any particular reasons which led to these different styles?
The text was updated successfully, but these errors were encountered: