diff options
Diffstat (limited to 'firstisupper')
-rwxr-xr-x | firstisupper | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/firstisupper b/firstisupper new file mode 100755 index 0000000..4278334 --- /dev/null +++ b/firstisupper @@ -0,0 +1,10 @@ +#!/usr/bin/env ruby + +def downcase?(string) + string[/[[:lower:]]/] +end + +while line = STDIN.gets + puts line.strip if downcase? line[0] +end + |