mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 00:54:04 +01:00
25 lines
527 B
PowerShell
Executable File
25 lines
527 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
Lists the Fibonacci numbers
|
|
.DESCRIPTION
|
|
This PowerShell script lists the first 100 Fibonacci numbers.
|
|
.EXAMPLE
|
|
PS> ./list-fibonacci.ps1
|
|
1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, ...
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
.NOTES
|
|
Author: Markus Fleschutz | License: CC0
|
|
#>
|
|
|
|
function fibonacci($n) {
|
|
if ($n -lt 2) { return 1 }
|
|
return (fibonacci($n - 1)) + (fibonacci($n - 2))
|
|
}
|
|
|
|
|
|
foreach ($i in 0..100) {
|
|
Write-Host "$(fibonacci $i), " -noNewline
|
|
}
|
|
exit 0 # success
|