summaryrefslogtreecommitdiff
path: root/ltok
blob: fc25a650b8d8c37b07c5f6c8b1da74cd6a2b46cd (plain)
1
2
3
4
5
6
7
8
#!/usr/bin/env ruby

STDIN.set_encoding "utf-8"
STDOUT.set_encoding "utf-8"

while line = STDIN.gets
  puts line.strip.split(/\s/).size
end