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