RosettaCodeData/Task/Scope-modifiers/PowerShell/scope-modifiers.ps1
2026-04-30 12:34:36 -04:00

6 lines
234 B
PowerShell

$a = "foo" # global scope
function test {
$a = "bar" # local scope
Write-Host Local: $a # "bar" - local variable
Write-Host Global: $global:a # "foo" - global variable
}