From: Matthew Moss Date: 2008-07-14T04:43:47+09:00 Subject: Re: Symbolify (#169) > def symbolify (n) >   s = "#{n}" >   def s.delete(*args) >     "" >   end >   s > end How does this work? If I type in irb: > symbolify(60) I get out: => "60" Doesn't fit the problem specification.