Re: [elm-discuss] Possible compiler bug while parsing type annotation in a let ?

2016-11-11 Thread Matthieu Pizenberg
Oh cool, thank you for the info, I will just comment it for now then. On Friday, November 11, 2016 at 5:09:31 PM UTC+8, Janis Voigtländer wrote: > > What you encountered is > https://github.com/elm-lang/elm-compiler/issues/1214, and it is fixed in > version 0.18 of the compiler. > -- You

Re: [elm-discuss] Re: Is Elm really wrong?

2016-11-11 Thread Peter Damoc
On Thu, Nov 10, 2016 at 10:49 PM, Max Goldstein wrote: > What I meant was, Elm needs to choose differently from Haskell, at least > some of the time, or else there wouldn't be a reason for it to exist. It's the Object Oriented Programming. More precisely, the "fixed

[elm-discuss] Re: A spawned task cannot produce a result?

2016-11-11 Thread 'Rupert Smith' via Elm Discuss
On Thursday, November 10, 2016 at 8:52:08 PM UTC, Max Goldstein wrote: > > So, I'm mostly speculating here, but could you use Task.andThen to get the > ID, which you then use to kill the task that updates the security token, if > necessary? Tried that, but the spawn task changes the return

[elm-discuss] Possible compiler bug while parsing type annotation in a let ?

2016-11-11 Thread Matthieu Pizenberg
Hi, I just came accross one very strange compiler error and wanted to have the point of view of the community before creating any github issue. I wrote some code to create tag more easily (seems to be trendy these days ^^) in a module Helpers.Views.elm. When I put a type annotation for a very

[elm-discuss] Re: Gestures in Elm

2016-11-11 Thread Matthieu Pizenberg
Hi, m.hag... ;) Just to say that I am with you and would love to have support of these also. As maybe a small step I wrote recently a slightly more complete library handling also multitouch events, not only single touches.

Re: [elm-discuss] Possible compiler bug while parsing type annotation in a let ?

2016-11-11 Thread Janis Voigtländer
What you encountered is https://github.com/elm-lang/elm-compiler/issues/1214, and it is fixed in version 0.18 of the compiler. Am Freitag, 11. November 2016 schrieb Matthieu Pizenberg : > Hi, > > I just came accross one very strange compiler error and wanted to have the > point of view of the

Re: [elm-discuss] port Maybe field behavior

2016-11-11 Thread Kasey Speakman
Yes, indeed. Thanks for pointing me to that. On Thursday, November 10, 2016 at 11:13:08 PM UTC-6, Janis Voigtländer wrote: > > Isn't that exactly the following issue? > > https://github.com/elm-lang/core/issues/476 > > > Am 11.11.2016 um 04:41 schrieb Max Goldstein >: > >

Re: [elm-discuss] Re: using a compile-to-js workflow with elm-webpack-starter

2016-11-11 Thread Martin DeMello
Thanks, that helped me get everything working! I think this would be useful to add to the docs somewhere (either in elm-webpack-starter or in the elm tutorial itself, since it does mention webpack elsewhere). martin On Tue, Nov 8, 2016 at 3:54 AM, Wouter In t Velt