Created
October 17, 2014 17:56
-
-
Save munro/016486db78202f32be80 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
| myFunction :: Record -> Record -> a | |
| foobar = myFunction Record { meow = "face" } | |
| Record { meow = "face" } | |
| -- vs -- | |
| myFunction :: (Record, Record) -> a | |
| foobar = myFunction( | |
| Record { meow = "face" }, | |
| Record { meow = "face" } | |
| ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment