Live data from Hacker News

Viewing profile — ansis-

ansis-

HN member
Joined
Mon, Oct 28, 2019, 9:53 AM UTC
HN karma
1
Public activity
1 items

About ansis-

No profile information was provided.

Recent public activity

  1. comment
    Comment #21375595

    C can be quite elegant: long factorial(int n) { return n == 0 ? 1 : n * factorial(n - 1); }