Advertisement
Guest User

Untitled

a guest
Jan 18th, 2020
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #import <Foundation/Foundation.h>
  2.  
  3. int main (int argc, const char * argv[]) {
  4.    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
  5.  
  6.    while(1){
  7.       NSLog (@"Спиздануть хуйню");
  8.       [NSThread sleepForTimeInterval:100500.0f];
  9.       NSLog (@"Высраться на стажера");
  10.       [NSThread sleepForTimeInterval:100500.0f];
  11.       NSLog (@"Имитировать работу");
  12.       [NSThread sleepForTimeInterval:100500.0f];
  13.       NSLog (@"Получить ДМС в конверте");
  14.       [NSThread sleepForTimeInterval:100500.0f];
  15.    }
  16.  
  17.    [pool drain];
  18.    return 0;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement