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

Yes and of course Haskell is quite capable of supporting uncurried functions too, e.g.

foo :: (Int, Int) -> Int

foo (x, y) = ...