mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-19 01:15:21 +00:00
7 lines
124 B
Bash
7 lines
124 B
Bash
mlr --from data/small --opprint put '
|
|
num suma = 0;
|
|
for (a = 1; a <= NR; a += 1) {
|
|
suma += a;
|
|
}
|
|
$suma = suma;
|
|
'
|