Files
ImportExcel/Public/Get-Range.ps1
2019-12-01 17:04:27 +00: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}
}