void (^myBlock) (void);

int year = 2525;

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

year = 1984;

myBlock();
