RosettaCodeData/Task/Scope-modifiers/PowerShell/scope-modifiers.psh

7 lines
234 B
Text
Raw Permalink Normal View History

2013-04-10 23:57:08 -07:00
$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
}