From: Florian Frank Date: 2002-12-18T01:50:11+09:00 Subject: Re: Deep copy in Rub? On 2002-12-18 01:20:18 +0900, Yohanes Santoso wrote: > > anyone can tell why ruby don't have deep copy routine in standard > > distribution? > But it has. Didn't you read my post? My Ruby has it now: [flori@lambda flori](0)$ irb --prompt xmp VERSION ==>"1.7.3" o = ["foo"] ==>["foo"] oc = o.deep_clone ==>["foo"] o[0].equal? oc[0] ==>false -- Men are born ignorant, not stupid. They are made stupid by education. -- Bertand Russell