Logo
Learn Ruby In Orbit
Menu
Public Planet Blueprints
What's New
Log In
Sign Up
Planet Blueprint #46
Andrew's Code
class Planet def initialize @color = 'Red and Yellow' @size = 'xl' @rings = true @atmosphere = 'gaseous' @storms = true end def is_habitable? true end def species_type "aliens" end end
Generated Planet