Egregoros

Signal feed

Timeline

Post

Remote status

Context

8
@SuperDicq @fiore @reia It is ugly and inconsistent which leads to more brain processing needed to parse something as simple as indentation. The half-indentation also fucks with my brain way too much since I like 1 tab/8 spaces for indentation.

Like look at this monstrosity
#include <stdio.h>

int
main (void)
{
int i = 1;

if (i == 1)
{
printf ("Hello world!\n");
return 0;
}
else if (i != 1)
{
printf ("unreachable\n");
return 1;
}
}

Replies

1