Data update

This commit is contained in:
Ingy döt Net 2026-02-01 16:33:20 -08:00
parent 5150844a7d
commit 4bb20c9b71
7735 changed files with 38060 additions and 199180 deletions

View file

@ -1 +0,0 @@
$h = @{ 'a' = 1; 'b' = 2; 'c' = 3 }

View file

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

View file

@ -1,3 +0,0 @@
foreach ($e in $h.GetEnumerator()) {
Write-Host Key: $e.Name, Value: $e.Value
}

View file

@ -1,5 +0,0 @@
$h.Keys | ForEach-Object { Write-Host Key: $_ }
foreach ($k in $h.Keys) {
Write-Host Key: $k
}

View file

@ -1,5 +0,0 @@
$h.Values | ForEach-Object { Write-Host Value: $_ }
foreach ($v in $h.Values) {
Write-Host Value: $v
}