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}
|
|
} |