RosettaCodeData/Task/Conditional-structures/PowerShell/conditional-structures-1.ps1
2026-04-30 12:34:36 -04:00

20 lines
212 B
PowerShell

# standard if
if (condition) {
# ...
}
# if-then-else
if (condition) {
# ...
} else {
# ...
}
# if-then-elseif-else
if (condition) {
# ...
} elseif (condition2) {
# ...
} else {
# ...
}