RosettaCodeData/Task/Stack/PowerShell/stack-1.psh

4 lines
100 B
Text
Raw Permalink Normal View History

2016-12-05 22:15:40 +01:00
$stack = New-Object -TypeName System.Collections.Stack
# or
$stack = [System.Collections.Stack] @()