Advertisement
Guest User

Untitled

a guest
Jul 5th, 2015
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. BOOL isRaining = YES;
  2. BOOL isSpring = YES;
  3.  
  4. if (isRaining && isSpring) {
  5. NSLog(@"Nothing like the smell of rain in the spring");
  6. } else if (isRaining) {
  7. NSLog(@"boo, rain!");
  8. } else {
  9. NSLog(@"i love the sun :) :) :) ");
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement