Hacker News new | ask | show | jobs
by adamnemecek 4577 days ago
OT but I've never seen anyone write semicolons that way in C.
1 comments

Commas?

Personally, I'm never a fan of punctuation first formatting styles - though I give some exception for dot (.) first method calls in fluent interfaces for C-family languages.

    someInterface
       .thatCan()
       .chain()
       .itsCalls();
Yeah, commas.