Mark Bolusmjak
Mark Bolusmjak
My bad, app & package have different formats. This is just a very confusing error message to get.
@klazuka seems that Elm expects a different format for packages vs apps. If you specify "type": "package" and using valid JSON for the "application" format, you will get the above...
@amedeedaboville This is not a problem with the code input into the REPL. This is a problem with the REPL itself. The REPL, if I understand correctly, does not have...
> Turns out there is already a PR that fixes this as well - [elm/virtual-dom#127](https://github.com/elm/virtual-dom/pull/127) Seeing as there is a fix, can we apply some "persuasion" to get this applied?...
As you can see, equality here is by reference, not by value. Anything in the let (a function, a list, a record) will not be equal by reference to its...
I say we "suffer" with integers, or, if we must, move to Strings with no automatic conversions. Strings are very flexible and easy to generate and understand.
Same error rack-mini-profiler (0.1.31)
For now I'll use the following: ``` import Tree exposing (Tree) import Tree.Zipper as Zipper exposing (Zipper) generalFold : (a -> b -> b) -> b -> Maybe a ->...
I happen to be using it to support turing a tree into a Dict (so long as nodes are comparable). I need to do THAT in order to encode my...