class ventana_prueba < Windows
def initialize
super
self.x(10)
self.y(10)
self.width(200)
self.heaight(200)
end
end
Pues esto no te mostrará nada xD
1) El nombre de una clase debe tener su inicial en capital.
2) "heaight" ._. Supongo que querías poner "height"
3) x(10)... No, a ver, si vas a definir un parámetro es self.x = 10
4) Con solo el método initialize no estás haciendo gran cosa, únicamente definiendo las propiedades.