Skip to content

Instantly share code, notes, and snippets.

@forki
Last active August 17, 2016 09:16
Show Gist options
  • Save forki/3152044dbec9d36cb43594759f11f758 to your computer and use it in GitHub Desktop.
Save forki/3152044dbec9d36cb43594759f11f758 to your computer and use it in GitHub Desktop.
div []
[for i in 0 .. model.Length-1 ->
div
[]
[ for j in 0 .. model.Length-1 ->
input
[ maxlength 1
property "value"
(match model.[i].[j] with
| 0 -> unbox ""
| v -> unbox (v.ToString()))
onInput (fun x -> ChangeBox ((i,j), int (unbox x)))
]
]
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment