ZenScript main repository
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

functions3.zs 198B

1
  1. function apply2(fn as function(value as int) as int, scale as int) as int { return fn(scale); } function scale2(value as int, scale as int) as int { return apply2(v => v * scale, value); }