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