Skip to content

Instantly share code, notes, and snippets.

@lagenorhynque
Created November 15, 2017 08:55
Show Gist options
  • Select an option

  • Save lagenorhynque/7bd1a64872d64adaaa60b02ec27f851c to your computer and use it in GitHub Desktop.

Select an option

Save lagenorhynque/7bd1a64872d64adaaa60b02ec27f851c to your computer and use it in GitHub Desktop.
> :set -XRankNTypes
> :{
| twoList :: [a] -> [b] -> (forall c. [c] -> d) -> (d, d)
| twoList xs ys f = (f xs, f ys)
| :}
> twoList [1,2,3,4,5] ["hoge","fuga","piyo"] length
(5,3)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment