Logo
Learn Ruby In Orbit
Menu
Public Planet Blueprints
What's New
Log In
Sign Up
Planet Blueprint #33
Andrew's Code
class Planet def initialize @color = 'red' @size = 'very big' @rings = true @atmosphere = 'airy' end def is_habitable? true end def species_type "human" end end
Generated Planet