Move help from Comment-based to md. Relocate functions (sans help)

This commit is contained in:
jhoneill
2019-11-17 15:30:15 +00:00
parent 07b36e5e56
commit 6d97018de6
133 changed files with 41075 additions and 5241 deletions

View File

@@ -0,0 +1,3 @@
function Get-Range ($start=0,$stop,$step=1) {
for ($idx = $start; $idx -lt $stop; $idx+=$step) {$idx}
}