Created
December 9, 2016 16:15
-
-
Save nomicflux/46920e879e40d0c3b90ec4d9c627a7f8 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
| add : Int -> Int -> Int | |
| add x y = x + y | |
| doSomething : (Int -> Int -> Int) -> Int -> Int -> Int | |
| doSomething f x y = f x y | |
| doSomething add 1 2 -- Result: 3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment