Skip to content

Instantly share code, notes, and snippets.

@ram0973
Last active October 1, 2018 17:22
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 ram0973/e63e539058d631b71f4237f452c69326 to your computer and use it in GitHub Desktop.
Save ram0973/e63e539058d631b71f4237f452c69326 to your computer and use it in GitHub Desktop.
Fibonacci in Powershell
Function Fib($n) {
if ($n -lt 2) {
return $n
}
return (Fib($n - 2)) + (Fib($n - 1))
}
1..30 | ForEach-Object {Fib -n $_}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment