Created
May 10, 2017 13:05
-
-
Save jinjor/9114fb25b1c7684c24b970ecbcdcaaa7 to your computer and use it in GitHub Desktop.
Elm for Java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| interface BeginnerProgram<Model, Msg> { | |
| Model model(); | |
| Model update(Msg msg, Model model); | |
| Html<Msg> view(Model model); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment