Skip to content

Instantly share code, notes, and snippets.

@chrisschreiner
Created May 26, 2016 12:57
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 chrisschreiner/dd72d09543616ff0d93aedae04c70754 to your computer and use it in GitHub Desktop.
Save chrisschreiner/dd72d09543616ff0d93aedae04c70754 to your computer and use it in GitHub Desktop.
parseKeyPress : Int -> Model -> ( Model, Cmd Msg )
parseKeyPress c model =
let
f =
case parseKey c of
Key1 ->
DebugTogglePadding
KeySpace ->
MakeMagicHappen
-- How to add another one?
_ ->
NoOp
in
( model, Cmd.none )
:> updateModel f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment