11 lines
165 B
Ruby
11 lines
165 B
Ruby
|
|
module Camera
|
||
|
|
# define methods here
|
||
|
|
end
|
||
|
|
class MobilePhone
|
||
|
|
# define methods here
|
||
|
|
end
|
||
|
|
class CameraPhone < MobilePhone
|
||
|
|
include Camera
|
||
|
|
# define methods here
|
||
|
|
end
|