packages feed

hjs-0.2: testsuite/11_funcs_factorial.js

function fac(y)
{
  if(y)
      return (fac(y-1)*y);
  else
      return 1;
}

fac(3) == 6;