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

9 lines
103 B
Text
Raw Permalink Normal View History

2016-12-05 22:15:40 +01:00
if (Get-Variable -Name noSuchVariable -ErrorAction SilentlyContinue)
{
$true
}
else
{
$false
}