mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-22 15:37:59 +00:00
12 lines
227 B
Text
12 lines
227 B
Text
$o = {
|
|
"a": {
|
|
"x": [1,2,3],
|
|
"y": [4,5,6],
|
|
},
|
|
"b": {
|
|
"s": [7,8,9],
|
|
"t": [9,5,1],
|
|
},
|
|
};
|
|
# Expect "(error)" in the output data since strings are not map-indexable
|
|
$z = $o[[1]]["x"];
|