RosettaCodeData/Task/Conditional-structures/PowerShell/conditional-structures-1.psh
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

20 lines
212 B
Text

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