From: 7stud -- Date: 2007-10-03T12:36:51+09:00 Subject: Re: File scope variable Martin Martinos wrote: > A > variable that I can access in each function of each class but which is > private to my .rb file. > > Does anybody has a idea? Yes. Don't do it. That's a horrible idea. If a method in your class needs a value, pass the value as an argument. -- Posted via http://www.ruby-forum.com/.