ZenScript main repository
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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); }