From: ts Date: 2003-03-12T23:42:18+09:00 Subject: Re: memory leaks with instance variables >>>>> "u" == ujb1 writes: u> Before you ask, why anybody does crazy things like creating instance u> variables with instance_eval: Well, this is not crazy to use instance_eval : your problem is not with instance_eval but because apparently you store the state in the variable name (@varName#{i}) and create many different symbols. Just store the state in an instance variable and always use @varName for your variable names. Guy Decoux