compiler
compiler copied to clipboard
Compiler for Elm, a functional language for reliable webapps.
I just tried to publish a shiny new package and got this error: ## SSCCE ``` This package has never been published before. Here's how things work: - Versions all...
**Quick Summary:** Large packages fail to publish in 0.19.1, with the CLI getting hung forever at the GitHub tag version check. ## SSCCE ```sh > elm publish + Found README.md...
**Quick Summary:** I entered an identity type alias, but elm refuses to unify LHS and RHS of the type alias later. ## SSCCE ```elm module Both.Msg exposing (..) type alias...
**Quick Summary:** Well-behaved Unix programs won't print Ansi escape sequences if TERM=dumb ## SSCCE ``` % set|egrep 'NO_COLOR|TERM=' NO_COLOR=1 TERM=dumb % elm Hi, thank you for trying out [92mElm[0m [92m0.19.1[0m....
**Quick Summary:** I create a list with `List.map`. Annotating the type of the list crashes the compiler. ## SSCCE ``` module Main exposing (..) import Browser import Html exposing (..)...
**Quick Summary:** In a lambda, annotating the argument with the wrong type argument causes an error: > thread blocked indefinitely in an MVar operation ## SSCCE ```elm test : a...
**Quick Summary:** This url no longer seems to work, http://elmlang.herokuapp.com/ but is referenced on, https://github.com/elm/compile under 'Help' to access the Elm Slack channel. ## SSCCE ```elm ``` - **Elm:** ???...
**Quick Summary:** `Skinney/murmur3 v2.0.8` has been re-released as `robinheghan/murmur3 v1.0.0`, and now anything using the `Skinney` version breaks (because GitHub tracks username changes, but their versions are different). **Full Explanation**:...
**Quick Summary:** `type alias A a = a`, `A a` should unify with `a`. ## SSCCE ```elm type alias A a = a a : a -> A a a...
**Quick Summary:** In documents around installation with npm, the installed bin path having a typo. ## SSCCE ```console $ node -v v18.12.1 $ npm --version 8.19.2 $ npm install [email protected]...