From: poseid Date: 2010-05-18T22:40:08+09:00 Subject: class arrays Hello, how does this work? >> class A >> b = [1, 2,3] >> end => [1, 2, 3] >> Is b an instance variable? class variable? how would I access b from outside the class? thanks