RosettaCodeData/Task/Inheritance-Multiple/Ruby/inheritance-multiple.rb

11 lines
165 B
Ruby
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
module Camera
# define methods here
end
class MobilePhone
# define methods here
end
class CameraPhone < MobilePhone
include Camera
# define methods here
end