Mohit Sindhwani wrote:
> I was just aticulating why "join" wouldn't exist
> as something similar to the way perl has.

Of course, it can have if you want:

  def join(sep, *args)
    args.join(sep)
  end

  puts join(' ','hello','world')
-- 
Posted via http://www.ruby-forum.com/.