mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-22 23:48:30 +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)
|