miller/docs6/docs/_build/html/data/single-for-example-2.sh

8 lines
140 B
Bash

mlr -n put '
end {
o = {1:2, 3:{4:5}};
for (key in o) {
print " key:" . key . " valuetype:" . typeof(o[key]);
}
}
'