- (void) andrewDidFinishCoding: (NSNotification *) aNotification andItsReallyLate: (BOOL) isLate orIsItJustReallyEarly: (BOOL) yupEarly { if (isLate && !yupEarly) { NSLog(@"Bah, humbug, I just need more caffeine."); [self maybeIShouldGoToSleep]; } // ... if/else/what? if (yupEarly && !isLate) { NSlog(@"4 O'what in the morning?"); [self ifIStayUpALittleLongerItWillBeMorning]; } /* * Wheee... multiline comments. */ if (yupEarly && isLate) { [self seriouslyGoToSleep: YES rightNow: YES really: YES]; } }