Name: Anonymous 2013-03-08 14:00
It is called Symta style, an extension of Stallman Style (tm), because `;` is part of indentation and could be auto-supplied by EMACS, solving a ton of problems, like:
1. unterminated "if (shit) printf(cock)"
2. no `;` after "label:"
3. visual cues
1. unterminated "if (shit) printf(cock)"
2. no `;` after "label:"
3. visual cues
main ()
{
; while (X<W) printf("C/C++ sucks!")
; if (1) goto end;
; return "eat cock"
; end:
;
}