From: Alex Young Date: 2006-08-10T22:35:32+09:00 Subject: Re: extending String call with a #copy!(n) Une b�vue wrote: > Daniel DeLorme wrote: > >> alias copy * > > with is the reason for this line ??? Your copy method produces identical results to the String#* method. For example: irb(main):001:0> a = "foo" => "foo" irb(main):002:0> a * 3 => "foofoofoo" -- Alex