0

what is the problem here

/usr/bin/ruby -w # define a class class Box # constructor method def initialize(w,h) @width, @height = w, h end # accessor methods def printWidth @width end def printHeight @height end end # create an object box = Box.new(10, 20) # use accessor methods x = box.printWidth() y = box.printHeight() puts "Width of the box is : #{x}" puts "Height of the box is : #{y}"

30th Dec 2019, 1:41 PM
xofifaw
xofifaw - avatar
1 Answer
+ 1
xofifaw , just remove the comment and make the line box = Box. new(10, 20)
30th Dec 2019, 1:51 PM
TheWh¡teCat 🇧🇬
TheWh¡teCat 🇧🇬 - avatar