Hacker News new | ask | show | jobs
by warty 2982 days ago
In older C#, that would be delegate:

    delegate(int x){ return 10; }
(But yeah, nowadays that would be:)

    (int x) => 10