Had this error message while working on some platform things for basic-cli. Logging here as we need to investigate, make a minimal repro, and fix our reporting provide a better error message. It is caused by the ! in the middle of the pipeline here.
── UNRECOGNIZED NAME in examples/../platform/Stdin.roc ─────────────────────────
Nothing is named `#!1_expr` in this scope.
68│> PlatformTask.stdinBytes
69│> |> Task.result!
70│> |> Result.withDefault []
71│> |> Task.ok
Had this error message while working on some platform things for basic-cli. Logging here as we need to investigate, make a minimal repro, and fix our reporting provide a better error message. It is caused by the
!
in the middle of the pipeline here.