summaryrefslogtreecommitdiff
path: root/toks
blob: ed40dbb89b817f1aa176264d9ad8633fcb9c8ef9 (plain)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/ruby

STDIN.set_encoding 'utf-8'
STDOUT.set_encoding 'utf-8'


while line = STDIN.gets
  line.strip.split(/\s/).each { |i| puts i }
end