Chapter4/4.1_Syntax/while/whileによる反復処理.ps1

while($val -ne 3){
    $val++
    Write-Host $val
}