RosettaCodeData/Task/Undefined-values/PowerShell/undefined-values-1.ps1
2026-04-30 12:34:36 -04:00

8 lines
103 B
PowerShell

if (Get-Variable -Name noSuchVariable -ErrorAction SilentlyContinue)
{
$true
}
else
{
$false
}