summaryrefslogtreecommitdiff
path: root/first-upper
diff options
context:
space:
mode:
Diffstat (limited to 'first-upper')
-rwxr-xr-xfirst-upper3
1 files changed, 1 insertions, 2 deletions
diff --git a/first-upper b/first-upper
index 610e62c..f9b2ce9 100755
--- a/first-upper
+++ b/first-upper
@@ -1,10 +1,9 @@
#!/usr/bin/env ruby
-require 'zipf'
+require "zipf"
while line = STDIN.gets
line.strip!
line[0] = line[0].upcase
puts line
end
-