mirror of
https://github.com/GnoConsortium/gno.git
synced 2025-01-22 18:30:47 +00:00
ddb82cb2e0
Maybe someday I'll become adept at using cvs...
14 lines
196 B
Plaintext
14 lines
196 B
Plaintext
BEGIN { x = 0; y = 1 }
|
|
|
|
$1 > x { if (x == y+1) {
|
|
x = 1
|
|
y = x * 2
|
|
} else
|
|
print x, z[x]
|
|
}
|
|
|
|
NR > 1 { print $1 }
|
|
|
|
END { print NR }
|
|
|