Chapter4/4.1_Syntax/for/for文による配列の反復アクセス.ps1

$array = "a","b","c"
for ($i = 0; $i -lt $array.Length; $i++){
    Write-Host $array[$i]
}