mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-22 15:37:59 +00:00
4 lines
80 B
Nim
4 lines
80 B
Nim
var line_count = 0
|
|
for line in stdin.lines:
|
|
line_count += 1
|
|
echo (line_count)
|