PowerShell/docs/list-fibonacci.md

47 lines
977 B
Markdown
Raw Normal View History

2024-01-25 13:37:12 +01:00
Script: *list-fibonacci.ps1*
========================
2022-11-17 20:02:26 +01:00
list-fibonacci.ps1
2022-11-17 19:46:02 +01:00
2023-07-29 10:04:38 +02:00
Parameters
----------
2022-11-17 19:46:02 +01:00
```powershell
[<CommonParameters>]
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
```
2023-07-29 10:04:38 +02:00
Script Content
--------------
2022-11-17 20:05:34 +01:00
```powershell
2022-11-17 20:02:26 +01:00
<#
.SYNOPSIS
Lists the Fibonacci numbers
.DESCRIPTION
2023-08-06 21:36:33 +02:00
This PowerShell script lists the first 100 Fibonacci numbers.
2022-11-17 20:02:26 +01:00
.EXAMPLE
2023-08-06 21:36:33 +02:00
PS> ./list-fibonacci.ps1
1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, ...
2022-11-17 20:02:26 +01:00
.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) {
2023-08-06 21:36:33 +02:00
Write-Host "$(fibonacci $i), " -noNewline
2022-11-17 20:02:26 +01:00
}
exit 0 # success
2022-11-17 20:05:34 +01:00
```
2022-11-17 20:02:26 +01:00
2024-03-27 17:36:59 +01:00
*(generated by convert-ps2md.ps1 using the comment-based help of list-fibonacci.ps1 as of 03/27/2024 17:36:28)*