Skip to content

Instantly share code, notes, and snippets.

@swuecho
Created August 2, 2012 01:21
Show Gist options
  • Select an option

  • Save swuecho/3232245 to your computer and use it in GitHub Desktop.

Select an option

Save swuecho/3232245 to your computer and use it in GitHub Desktop.
patterm code
sub sum($n,&term,&suc) {
my ($total,$k)=0,1;
while $k<=$n {
$total=$total+term($k);
$k=suc($k);
}
return $total;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment