Hacker News new | ask | show | jobs
by pknerd 2849 days ago
Interesting coding style with too much whitespace. Is it some standardized pattern? I found something similar in the code written by John Carmack.
3 comments

To my eyes this seemed like a completely normal amount of whitespace. The only thing I personally prefer that you would reasonably reduce is moving the left block delimiter from its own line (But left block braces being on their own line is fairly common for C/C++ projects afaik)
Allman style. More popular in the error before pretty printing editors, to help visualize the blocks.