Files
ImportExcel/Public/Get-Range.ps1
2020-06-21 22:34:46 +02:00

5 lines
139 B
PowerShell

function Get-Range {
[CmdletBinding()]
param($Start=0,$Stop,$Step=1)
for ($idx = $Start; $idx -lt $Stop; $idx+=$Step) {$idx}
}