mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-18 17:04:50 +00:00
7 lines
120 B
Bash
Executable file
7 lines
120 B
Bash
Executable file
mlr --from data/small put '
|
|
func f(map m): map {
|
|
m["x"] *= 200;
|
|
return m;
|
|
}
|
|
$* = f({"a": $a, "x": $x});
|
|
'
|