Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

What's your style?

Name: Anonymous 2009-06-28 11:17


 for(i = 0; i < 10; i++) {
     if(i % 2 == 0) {
         doSomething(i); }
     else {
         doSomethingElse(i); } }


or


if (x < 0) {
  printf("Negative");
  negative(x);
} else {
  printf("Positive");
  positive(x);
}

Name: Anonymous 2009-06-28 18:52

for(i = 0; i < 10; i++) {
  if(i % 2 == 0) {
    doSomething(i);
  } else {
    doSomethingElse(i);
  }
}

if (x < 0) {
  printf("Negative");
  negative(x);
} else {
  printf("Positive");
  positive(x);
}

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List