RosettaCodeData/Task/Associative-array-Iteration/PowerShell/associative-array-iteration-2.ps1
2026-04-30 12:34:36 -04:00

1 line
81 B
PowerShell

$h.GetEnumerator() | ForEach-Object { Write-Host Key: $_.Name, Value: $_.Value }