Guest User

Untitled

a guest
Jul 17th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. -- model
  2. count = 0
  3.  
  4. --reducer
  5. update msg count =
  6. case msg of
  7. Increment ->
  8. count + 1
  9.  
  10. -- view
  11. view count = intButton [ onClick Increment ] count
Add Comment
Please, Sign In to add comment