Created
August 23, 2016 05:26
-
-
Save gsg/5b2e9210369921a1b78d5617f452214b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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