RosettaCodeData/Task/Undefined-values/PowerShell/undefined-values-1.psh

9 lines
103 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
if (Get-Variable -Name noSuchVariable -ErrorAction SilentlyContinue)
{
$true
}
else
{
$false
}