Difference between revisions of "Power Shell"

Jump to navigation Jump to search
m (→‎Strings: Terminology error correction)
m (→‎Scope: Correction)
Line 165: Line 165:
<source lang="powershell">
<source lang="powershell">
function Local-Add($text) {
function Local-Add($text) {
     $script:List += $text
     $List += $text
}
}