programming-examples/ruby/_Basics/inheritance robots.rb
2019-11-15 12:59:38 +01:00

16 lines
191 B
Ruby

class Robot
# Your code goes here
end
class Ultron < Robot
# Your code goes here
end
class MegaMan < Robot
# Your code goes here
end
class Glados < Robot
# Your code goes here
end