Logo
Learn Ruby In Orbit
Menu
Public Planet Blueprints
What's New
Log In
Sign Up
Planet Blueprint #22
Andrew's Code
class NightPlanet < Planet def initialize super @color = 'dark purple' @size = 'm' @atmosphere = 'thin, luminescent mist' end def is_habitable? true end def species_type "nocturnal beings" end end
Generated Planet