Skip to content

Instantly share code, notes, and snippets.

@gsg
Created August 23, 2016 05:26
Show Gist options
  • Save gsg/5b2e9210369921a1b78d5617f452214b to your computer and use it in GitHub Desktop.
Save gsg/5b2e9210369921a1b78d5617f452214b to your computer and use it in GitHub Desktop.
head : forall x . List x -> Maybe x
head = /\(t : *) . \(l : List t) ->
case l of
| Cons [t] x _ -> Just [t] x
| Nil [t] -> Nothing [t]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment