mirror of
https://github.com/johnkerl/miller.git
synced 2026-01-23 18:25:45 +00:00
8 lines
140 B
Bash
Executable file
8 lines
140 B
Bash
Executable file
mlr -n put '
|
|
end {
|
|
o = {1:2, 3:{4:5}};
|
|
for (key in o) {
|
|
print " key:" . key . " valuetype:" . typeof(o[key]);
|
|
}
|
|
}
|
|
'
|