Created
March 2, 2022 12:31
-
-
Save jeovazero/ae6e368151916504693e48e65f797c37 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
{-# LANGUAGE Rank2Types #-} | |
mapPair :: (forall x. x -> x) -> (a,b) -> (a,b) | |
mapPair f (a, b) = (f a, f b) | |
id' :: forall x. x -> x | |
id' x = x | |
main = print $ mapPair id' (1, 'a') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment