func udf(a,b) { return a * b }
end {
  funct f = udf;
  print typeof(f);
  print f(3, 4);
}
