video stop at 1h

This commit is contained in:
2026-01-04 09:16:50 +01:00
parent dfdd034949
commit 243f41f173
7 changed files with 99 additions and 1 deletions

6
6.for_loops.ps1 Normal file
View File

@@ -0,0 +1,6 @@
$HaloPeeps = @('Master Chief', 'Cortana', 'Captain Keys', 'Flood')
For($counter = 0; $counter -le 3; $counter++){
Write-Host "Holy smokes. it's" $HaloPeeps[$counter]
}