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

def downcase?(string)
  string[/[[:lower:]]/]
end

while line = STDIN.gets
  puts line.strip if downcase? line[0]
end