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
{{ message }}
This repository has been archived by the owner on Jul 11, 2021. It is now read-only.
> a = [3 | 4] .
>>> 1 new errors. Type `sol` for details.
> sol
Solution empty.
Errors
======
Uninitialized rules
===================
Failed to initialize rule:
a = [3 | 4] .
due to `Malformed list`
a = &cons(3, 4).
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The rule
a = [3 | 4]' gets an error
Malformed lista = &cons(3,4)
, which is correct (except that I thought we weren't exposingcons
anymore?).But
b = [3 | &foo]
gets an incorrect error that shows that it oddly interprets|
as the boolean operator rather than as the list pipe:The text was updated successfully, but these errors were encountered: