mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-31 19:51:33 +00:00
14 lines
199 B
Text
14 lines
199 B
Text
end {
|
|
@m = {
|
|
"a": {
|
|
"x": [1,2,3],
|
|
"y": [4,5,6],
|
|
},
|
|
"b": {
|
|
"s": [7,8,9],
|
|
"t": [9,5,1],
|
|
},
|
|
};
|
|
unset @m["a"][[1]];
|
|
emit @m;
|
|
}
|