Live data from Hacker News

Viewing profile — curry_is_easy

curry_is_easy

HN member
Joined
Sun, Apr 07, 2024, 7:34 AM UTC
HN karma
3
Public activity
1 items

About curry_is_easy

No profile information was provided.

Recent public activity

  1. comment
    Comment #39959009

    Since you know JavaScript, this should help. Uncurried: ((x, y) => x * y)(3, 5) === 15 Curried: (x => y => x * y)(3)(5) === 15 If you don't understand that, your problem is that yo…