Logo
Learn Ruby In Orbit
Menu
Public Planet Blueprints
What's New
Log In
Sign Up
Planet Blueprint #14
Andrew's Code
class GasGiantPlanet < Planet def initialize super @color = 'orange' @size = 'xxl' @atmosphere = 'mostly helium and hydrogen' end def is_habitable? false end def species_type "unknown" end end
Generated Planet