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