Re: [elm-discuss] The Elm Architecture and Html.beginnerProgram

2016-11-26 Thread Nick H
What are you trying to figure out? If you are looking for the implementation of Html.beginnerProgram, you can look in the elm-stuff/packages directory. Or you can compile your program and read the output JavaScript to see what is "really" going on. But I don't think either of those things are

[elm-discuss] The Elm Architecture and Html.beginnerProgram

2016-11-26 Thread Wouter In t Velt
The `model` function is called only once, when your app is started. Then your `view` function is called, to render the model to the DOM. After that, every time your `view` function produces and `Msg`, your `update` function is called, and the resulting model is passed on to another call of

[elm-discuss] The Elm Architecture and Html.beginnerProgram

2016-11-26 Thread Brent Brinkley
Where can I find the code that show specifically what's happening with the information that's passed into Html.beginnerProgram { model = model, view = view, update = update } ?? -- You received this message because you are subscribed to the Google Groups "Elm Discuss" group. To unsubscribe