Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
Book-PowerShell-Samples
0.2
Chapter4/4.1_Syntax/while/whileによる反復処理.ps1
while
(
$val
-ne
3
)
{
$val
++
Write-Host
$val
}