Skip to content

Instantly share code, notes, and snippets.

View monroemann's full-sized avatar
💭
Building out breakdiving.io every day!

Monroe Mann monroemann

💭
Building out breakdiving.io every day!
View GitHub Profile
@monroemann
monroemann / computer.rb
Created May 28, 2017 23:29
Firehose Class Quiz
class Computer
attr_accessor :make, :model
def initialize(make, model)
@make = make
@model = model
end
def output_computer
puts "Check out the new #{self.make} #{self.model}"
end