class String def shift return nil if self.empty? item=self[0] self.sub!(/^./,"") return nil if item.nil? item.chr endenda = "this is a test"puts a.shift