compiler icon indicating copy to clipboard operation
compiler copied to clipboard

Compiler for Elm, a functional language for reliable webapps.

Results 173 compiler issues
Sort by recently updated
recently updated
newest added

If a package exposes variants of a `type` that did not expose its variants in a previous version, it will be marked as a major change, even though it doesn't...

I would like Elm to make the version number available in the Windows Control Panel. The WinGet package manager needs this information to know when to update the software. I...

**Quick Summary:** Hello, I'm trying to use Elm on OpenBSD but I get this error ``` ---- Elm 0.19.1 ---------------------------------------------------------------- Say :help for help and :exit to exit! More at...

**Quick Summary:** Formatting long (in my case 64k long) lists all on one line causes a parser error, while formatting them "one element per line" compiles fine. ## SSCCE ```elm...

I think adding a function "method" dot notation would simplify expressions and ease adaptation for JS-developers. Lean4 is purely functional, but also has support for .dot notation for associated functions....

**Quick Summary:** After changing my GitHub username, it was still possible for me to publish a new package with my old username. ## SSCCE 1. Have a GitHub account (let's...

**Quick Summary:** ??? When using `true` instead of `True`, you get this error: ``` > true -- NAMING ERROR ---------------------------------------------------------- /repl I cannot find a `true` variable: 3| true ^^^^...

**Quick Summary:** Running `elm make` when `elm-stuff` needs to be initialized, on a very busy system with multithreading, can occasionally lead to a crash. There are a few variations to...

## Problem On a fresh git clone (commit 2f6dd29), fresh install of Haskell via GHCup (GHCup 0.1.22.0, cabal 3.10.3.1, GHC 9.4.8), on Windows 10, I get the following error: ```bash...

## Setup: `src/Main.elm`: ```elm module Main exposing (main) main : Program () () () main = Debug.todo "eventually" ``` I run `elm make src/Main.elm --optimize --output=/dev/null`. ## Expected behaviour The...