Charles Scalfani
Charles Scalfani
I found another case: ``` [source,haskell] ---- compareMaybe :: ∀ a. Maybe a -> Maybe a -> Boolean ---- ``` This will spill out unless I remove the `::` or...
Turns out that downgrading to Haskell Syntax Highlighting 3.0.3 works, yet there are ZERO problems with syntax highlighting in Haskell files, just ASC files.
This bug has left NPM 5.x.x broken since no global installs can be made. Is this scheduled to be fixed?
Another reason to have this is if you have a high-level protocol, i.e. app-specific protocol, that's stateful over a websocket, having the websocket reconnect and send queued items is NOT...
I wrote my own: https://github.com/panosoft/elm-websocket-browser. Also a server version: https://github.com/panosoft/elm-websocket-server.
Is there any way to cause the REPL to display warnings?
Thanks. I really hate littering my code with GHC options (which does work BTW). But setting the following does NOT:  Am I doing this correctly? BTW, here is my...
I just updated to 0.8.4 AND restarted Atom and putting `-Wall` in Extra Args works now. Thank you for the help!
For anyone who is running into this issue, replacing: ``` let x = \_ -> unsafePartial $ crash "this is an error" ``` with: ``` let x = \_ ->...
> Is it possible to construct a program (other than Partial) that is correct under the previous type-class insertion, which is made incorrect in the hoisted version? Yes it is....