summaryrefslogtreecommitdiff
path: root/first-upper
blob: 610e62cc3308351539432b472a72ac03d9d7247c (plain)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env ruby

require 'zipf'

while line = STDIN.gets
  line.strip!
  line[0] = line[0].upcase
  puts line
end