Martin Janiczek
Martin Janiczek
```elm module File1 exposing (CustomType) type CustomType = Foo | Bar ``` ```elm module File2 exposing (usage) import File1 exposing (CustomType(..)) usage = Foo ``` This will currently get you:...
Got this error message: ``` An internal compiler expectation was broken. This is definitely a compiler bug. Please file an issue here: https://github.com/roc-lang/roc/issues/new/choose thread '' panicked at 'ambient functions don't...
```elm consecutivePairs : List a -> List ( a, a ) pairwise : (a -> a -> b) -> List a -> List b consecutivePairs [ 1, 2, 3, 4...
https://discourse.elm-lang.org/t/elm-minithesis-gathering-feedback-and-benchmarks/6106/4