Skip to content

Instantly share code, notes, and snippets.

@eriknyk
Created June 16, 2015 18:07
Show Gist options
  • Save eriknyk/675cd02928f65623f5db to your computer and use it in GitHub Desktop.
Save eriknyk/675cd02928f65623f5db to your computer and use it in GitHub Desktop.
fib.php
<?php
$n = $_GET? $_GET['n']: $argv[1];
function fib($n)
{
if ($n <= 2)
return 1;
else
return fib($n-1) + fib($n-2);
}
printf("fib(%d) = %d\n", $n, fib($n, 2));
echo PHP_EOL;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment