miller/test/cases/dsl-array-map-indexing/0035/mlr
2021-11-11 14:15:13 -05:00

14 lines
194 B
Text

end {
@m = {
"a": {
"x": [1,2,3],
"y": [4,5,6],
},
"b": {
"s": [7,8,9],
"t": [9,5,1],
},
};
unset @m[[1]];
emit @m;
}