Skip to content

Instantly share code, notes, and snippets.

@neerajsingh0101
Created July 12, 2017 13:17
Show Gist options
  • Save neerajsingh0101/8e7756a1b7588538ac16526ce2bfc772 to your computer and use it in GitHub Desktop.
Save neerajsingh0101/8e7756a1b7588538ac16526ce2bfc772 to your computer and use it in GitHub Desktop.
module Main exposing (..)
import Html exposing (..)
import Html.Attributes exposing (..)
import Html.Events exposing (..)
main =
Html.beginnerProgram { model = model, view = view, update = update }
type alias Model =
{ name : String, age : Int }
model : Model
model =
{ name = "Sam", age = 23 }
type Msg
= Noop
update : Msg -> Model -> Model
update msg model =
model
view : Model -> Html Msg
view model =
div [] [ text (toString model) ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment