RosettaCodeData/Task/Extend-your-language/PowerShell/extend-your-language-2.ps1

7 lines
186 B
PowerShell
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
When-Condition -Test1 (Test-Path .\temp.txt) -Test2 (Test-Path .\tmp.txt) `
-Both { "both true"
} -First { "first true"
} -Second { "second true"
} -Neither { "neither true"
}