use io struct dingus { x = 5 y = "dingus" } e = new dingus puts e puts dingus puts e.x println(e.y) e.x = 7 e.y = "heheheha" puts e.x println(e.y)