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