summaryrefslogtreecommitdiff
path: root/toks
blob: db8076f9172a3e6f8891322eafac50e33ceea9fb (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
  line.strip.split(/\s/).each { |i| puts i }
end