Skip to content

Instantly share code, notes, and snippets.

Created July 11, 2016 12:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/6ebecb048aba59a0e0e6d08f324f2970 to your computer and use it in GitHub Desktop.
Save anonymous/6ebecb048aba59a0e0e6d08f324f2970 to your computer and use it in GitHub Desktop.
use experimental :cached;
sub fib($n) is cached{
return $n if ($n < 2);
return fib($n - 1) + fib($n - 2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment