Viewing profile — spoonspoon2
spoonspoon2
HN member- Joined
- Wed, Nov 11, 2020, 8:58 AM UTC
- HN karma
- 1
- Public activity
- 2 items
- HN profile
- View on Hacker News ↗
About spoonspoon2
No profile information was provided.
Recent public activity
-
comment
Comment #25056753
native support, no emulation etc.
-
comment
Comment #25056742
You can now write very short functions in C#: int Factorial(int n) => n is <= 1 ? 1 : n * factorial(n -1);