Created
May 14, 2018 06:54
-
-
Save joneshf/1af9864a819c0c05f5e348b21a20ed0d to your computer and use it in GitHub Desktop.
mkFnN optimization
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
module Main where | |
import Prelude | |
import Data.Function.Uncurried (mkFn1) | |
foo = mkFn1 \_ -> 4 | |
bar = mkFn1 $ const 4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment