Live data from Hacker News

Ask HN: Examples of Unusual Code Formatting Styles?

news.ycombinator.com

21–22 of 22 posts

Re: Ask HN: Examples of Unusual Code Formatting Styles?

#21
https://github.com/boot-clj/boot/blob/master/boot/base/src/m... looks like the gnu standard for C (https://www.gnu.org/prep/standards/standards.html#Formatting), applied to Java.

I think that was done to make grepping for function definitions easier (when searching for the definition of foo, grep for “^foo\b”. That makes implementing “go to function definition” possible without having to parse code)

Post reply on HN