Files
Powershell-Training/1.Basic/8.While.ps1

9 lines
214 B
PowerShell

$xmen = @('Wolverine', 'Cyclops', 'Storm', 'Professor x', 'Gambie', 'Dr. Jean Grey')
$counter = 0
While ($counter -ne 6){
Write-Host $xmen[$counter] "is a mutant!"
$xmen[$counter].Length
$counter++;
}