You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
test/sprtn/errors/unused.sprtn(1,0): Bad `define` syntax, not allowed in this context:
1 |(define foo 23)
|^^^^^^^^^^^^^^^
test/sprtn/errors/unused.sprtn(1,8): Unused variable `foo`, rename to `_` to avoid this error:
1 |(define foo 23)
| ^^^
The first error is not warranted and indeed it disappears if the input is prepended by any other expression, despite the define remaining in the same scope.
The text was updated successfully, but these errors were encountered:
This is done so that a scope needs to return a value, but at top level the resulting module should be the value. It should be laxed when #55 is implemented.
For this input:
It produced the following output:
The first error is not warranted and indeed it disappears if the input is prepended by any other expression, despite the define remaining in the same scope.
The text was updated successfully, but these errors were encountered: