noise

計算機科学や各種設定のメモ

PowerShellのSplatオペレータ

$h = @{"a" = 0; "b" = 1} # making a hashtable
function showargs { return $args }
showargs @h

実行結果

-a:
0
-b:
1