func(yyy) {
     func2(xxx);
 }
 
 # will accept the closure as the first parameter
 # which is equals to the function invoke expression
 
 func({
     func2(xxx);
 }, yyy);