From: Ravikiran Basa Date: 2010-10-13T04:01:37+09:00 Subject: error while executing the code i run the below code with ruby interpritor(1.8.7) i am getting error " ruby: illegal switch in RUBYOPT: -� (RuntimeError)" ------------------------------------------------------------ class Animal def set_noise(noi) @noise=noi end def make_noise @noise end end ani=Animal.new ani1=Animal.new puts ani1.make_noise ani.set_noise("gur") puts ani.make_noise --------------------------------------------------------------- if the same code is run in Netbeans IDE(Jruby) i am getting expected output. Can somebody explain the reason? -- Posted via http://www.ruby-forum.com/.