Alt e.pl

From Organic Design wiki
Revision as of 06:46, 19 April 2007 by Sven (talk | contribs) (# {{perl}}{{#security:*|dev}}{{#security:view|*}})
  1. Our Perl scripts.{{#security:*|dev}}{{#security:view|*}}
  2. Returns e^x from e( x, iterations )

sub e { $x = $y = shift; $top = $bot = 1; for $n ( 1 .. shift ) { $y = $y + $x; $top = $top * $n + $y; $bot = $bot * $n; } return $top / $bot; }