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