Skip to content

Instantly share code, notes, and snippets.

@IntegerMan
Created December 30, 2019 05:09
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 IntegerMan/8b066348e854882438337612ec968a24 to your computer and use it in GitHub Desktop.
Save IntegerMan/8b066348e854882438337612ec968a24 to your computer and use it in GitHub Desktop.
/// This is the main data model for our application
type Model = {
ClickCount: int
Message: string
}
/// This is used to define the initial state of our application
let init() = {
ClickCount = 0
Message = "Hello Elmish.WPF"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment