RosettaCodeData/Task/Associative-array-Creation/PowerShell/associative-array-creation-3.psh
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

4 lines
210 B
Text

$hashtable.foo = "bar"
$hashtable['bar'] = 42
$hashtable."a b" = 3.14 # keys can contain spaces, property-style access needs quotation marks, then
$hashtable[5] = 8 # keys don't need to be strings