Skip to content

Instantly share code, notes, and snippets.

@Brandongoodman615
Created June 22, 2018 22:27
Show Gist options
  • Save Brandongoodman615/cf14ef4a9891fa1e9ef673d48daa975f to your computer and use it in GitHub Desktop.
Save Brandongoodman615/cf14ef4a9891fa1e9ef673d48daa975f to your computer and use it in GitHub Desktop.
Quiz #3 Build a class
class Bicycle
attr_accessor :brand, :weight
def initialize(brand, weight)
@brand = brand
@weight = weight
end
def output_bicycle
puts "#{@weight} lb, #{@brand} bicycle"
end
end
bicycle = Bicycle.new(:huffy, 15)
bicycle.output_bicycle
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment