Created
July 28, 2019 12:29
-
-
Save vivekramaswamy/24e4a3e4ac16649ab11efe7d99c782a8 to your computer and use it in GitHub Desktop.
show pointfree
This file contains 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
--not pointfree | |
addAndDrop x y = x+1 | |
--PointfreeVersion | |
addAndDrop = const.(1 +) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment