Skip to content

Instantly share code, notes, and snippets.

@blaisethomas
Created February 3, 2015 06:57
Show Gist options
  • Save blaisethomas/f5f4c4a104804e5c80e0 to your computer and use it in GitHub Desktop.
Save blaisethomas/f5f4c4a104804e5c80e0 to your computer and use it in GitHub Desktop.
Q2 // What is the output ?
class Car
attr_accessor :color
def speed
speeda = 100;
end
def print_speed
puts @speeda
end
end
chevy = Car.new
chevy.speed
chevy.print_speed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment