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
The following gives a cryptic error message. The curried function should include parens, but they are missing. This is difficult for users to spot unless they are already very familiar with the syntax (in which case they may never see this error).
module [main]
main : U8 -> _ -> TaskU8_# should be, works ok# main : U8 -> (_ -> Task U8 _)
$ roc check example.roc
── SYNTAX PROBLEM in example.roc ───────────────────────────────────────────────
I got stuck here:
1│ module [main]
2│
3│ main : U8 -> _ -> Task U8 _
^
Whatever I am running into is confusing me a lot! Normally I can give
fairly specific hints, but something is really tripping me up this
The text was updated successfully, but these errors were encountered:
The following gives a cryptic error message. The curried function should include parens, but they are missing. This is difficult for users to spot unless they are already very familiar with the syntax (in which case they may never see this error).
The text was updated successfully, but these errors were encountered: