From b31ace79ea5f6b3f279c544cd3a443d6fbf2a24d Mon Sep 17 00:00:00 2001 From: Patrick Simianer Date: Thu, 26 Feb 2026 10:05:59 +0000 Subject: overhaul --- is-first-lower | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'is-first-lower') diff --git a/is-first-lower b/is-first-lower index 1cddb8e..a7e2073 100755 --- a/is-first-lower +++ b/is-first-lower @@ -1,11 +1,10 @@ #!/usr/bin/env ruby -require 'zipf' +require "zipf" while line = STDIN.gets line.strip! - if line && line!='' && line[0].downcase? + if line && line!="" && line[0].downcase? puts line end end - -- cgit v1.2.3