Help for this page

Select Code to Download


  1. or download this
    multi sub factorial (Any where {$^n==0} $n) { 1 }
    multi sub factorial ($n) { $n * factorial $n-1 }