mirror of
https://github.com/dfinke/ImportExcel.git
synced 2025-12-06 00:23:20 +00:00
5 lines
139 B
PowerShell
5 lines
139 B
PowerShell
function Get-Range {
|
|
[CmdletBinding()]
|
|
param($start=0,$stop,$step=1)
|
|
for ($idx = $start; $idx -lt $stop; $idx+=$step) {$idx}
|
|
} |