From: Chris Shea Date: 2008-07-14T04:55:38+09:00 Subject: Re: Symbolify (#169) On Jul 13, 1:43 pm, Matthew Moss wrote: > > 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. But it passes the code you gave in the quiz description! Chris