Live data from Hacker News

Viewing profile — spoonspoon2

spoonspoon2

HN member
Joined
Wed, Nov 11, 2020, 8:58 AM UTC
HN karma
1
Public activity
2 items

About spoonspoon2

No profile information was provided.

Recent public activity

  1. comment
    Comment #25056753

    native support, no emulation etc.

  2. comment
    Comment #25056742

    You can now write very short functions in C#: int Factorial(int n) => n is <= 1 ? 1 : n * factorial(n -1);