Y
Hacker News
new
|
ask
|
show
|
jobs
by
kaba0
1880 days ago
Just a nitpick, but currying is a language detail, one can potentially create an efficient implementation with or without them.
1 comments
grumpyprole
1880 days ago
Yes and of course Haskell is quite capable of supporting uncurried functions too, e.g.
foo :: (Int, Int) -> Int
foo (x, y) = ...
link
foo :: (Int, Int) -> Int
foo (x, y) = ...