Skip to content

Instantly share code, notes, and snippets.

@jinjor
Created March 11, 2017 17:30
Show Gist options
  • Select an option

  • Save jinjor/7060e5b23fede38fabd2287260edf5b1 to your computer and use it in GitHub Desktop.

Select an option

Save jinjor/7060e5b23fede38fabd2287260edf5b1 to your computer and use it in GitHub Desktop.
headOrDead : List a -> a
headOrDead list =
case list of
[] ->
Debug.crash "oh?"
x :: _ ->
x
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment