PPz
1
Hi everyone,
I new to elm lang and currently learning and practicing on exercism.
I came across this exercise involving the elm/parser package.
In the source code of elm/parser
, I noticed the infix
keyword being used. But I’ve heard from some sources that infix
was removed in v0.19.1.
I’m confused. I’d really appreciate any help!
dta
2
There are a small number of first party packages that are still allowed to define infix operators. elm/parser is one of them.
1 Like
PPz
3
Okay, this helps.
The conclusion is generally we can’t use the infix keyword.
But the core members of elm-lang developers can.
I think it’s really confusing.