Skip to content

Instantly share code, notes, and snippets.

@hexx
Created July 21, 2012 03:05
Show Gist options
  • Save hexx/3154396 to your computer and use it in GitHub Desktop.
Save hexx/3154396 to your computer and use it in GitHub Desktop.
rpscala83-5.hs
foo2 :: forall a b. (a -> [a]) -> b -> Int -> ([b], [Int])
foo2 f b c = ((f b), (f c))
bar2 :: forall b. (forall a. a -> [a]) -> b -> Int -> ([b], [Int])
bar2 f b c = ((f b), (f c))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment