From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
123456789 #!/usr/bin/ruby### https://rosettacode.org/wiki/Inheritance/Multiple#class Camera {};class MobilePhone {};class CameraPhone << Camera, MobilePhone {};
#!/usr/bin/ruby
#
## https://rosettacode.org/wiki/Inheritance/Multiple
class Camera {};
class MobilePhone {};
class CameraPhone << Camera, MobilePhone {};