int (^myMultiplier)(int, int) = ^int (int a, int b){ 
   return a * b;
};

myMultiplier(7, 8);
^{ NSLog(@"Witaj bloku!"); }();
