void (^myBlock) (void);

int year = 2525;

myBlock = ^{ NSLog(@"W roku %i", year); };
myBlock();
