Logo
Learn Ruby In Orbit
Menu
Public Planet Blueprints
What's New
Log In
Sign Up
Planet Blueprint #47
Andrew's Code
module ExoticFlora def dominant_plants "Glowing Mushrooms" end end module ExoticFauna def dominant_animals "Six-legged Creatures" end end class AlienPlanet include ExoticFlora include ExoticFauna attr_reader :planet_dominant_plants, :planet_dominant_animals def initialize @planet_dominant_plants = dominant_plants @planet_dominant_animals = dominant_animals end end
Generated Planet