Laszlo Pandy
Laszlo Pandy
The above is my suggestion for how `elm make` can be easier for beginners. Please add your comments, especially about the part for library creators (which I have no experience...
@evancz I've changed my mind regarding the `--js` and `--html`. I think having `--html`, `--js` and `--node-js` is too much, especially since they cannot be used at the same time....
That link makes it look like a cabal-type thing. Is there any info about specifically what the good parts are? On Thursday, September 24, 2015, Evan Czaplicki [email protected] wrote: >...
When thinking about what is in core, here is a good way to organize it: | Basic types | Containers | Graphics | Network | User interaction | Utils |...
For reference TypeScript has this check and it looks like this: `Example.ts(12,24): error TS4060: Return type of exported function has or is using private name 'ExampleType'.` Or: `Example.ts(12,24): error TS4078:...
Yes `every` should work but there are probably some other parts of the standard library which don't work with `elm-reactor`. Your plan to fix it looks very good. It is...
Actually I don't think it belongs in this library. Since I forked maxsnew/IO, I wanted to focus on using the console, specifically to support things like elm-test. `writeFile` only exists...
Should be fixed in version 1.1.1 http://package.elm-lang.org/packages/laszlopandy/elm-console/1.1.1/
If you send a pull request I'll check it but I didn't update for 0.18 because elm-console was only used for running tests on the command line. In 0.18 this...
The IO type is a chain of operations which doesn't ever idle. It is either actively processing an IO operation, or blocking on waiting for user input. This is similar...