Skip to content

Instantly share code, notes, and snippets.

@isomorpheric
Created March 1, 2016 00:06
Show Gist options
  • Save isomorpheric/82e14410820817aa6e77 to your computer and use it in GitHub Desktop.
Save isomorpheric/82e14410820817aa6e77 to your computer and use it in GitHub Desktop.
class Aircraft
attr_accessor :aircraft, :make
def initialize(aircraft, make)
@aircraft = aircraft
@make = make
end
def describe
puts "This aircraft is a #{aircraft} #{make}."
end
end
plane1 = Aircraft.new("Single-Engine", "Cessna")
plane1.describe
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment