Skip to content

Instantly share code, notes, and snippets.

@chuck0523
Created April 13, 2016 22:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chuck0523/2b200b1e4a3fdf5e06bff453525ef470 to your computer and use it in GitHub Desktop.
Save chuck0523/2b200b1e4a3fdf5e06bff453525ef470 to your computer and use it in GitHub Desktop.
-- model
type alias Model =
{ todos : List (ID, Todo.Model)
, nextID : ID
, addText : String -- New!
}
type alias ID = Int
init : Model
init =
{ todos = []
, nextID = 0
, addText = "" -- New!
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment