Created
February 3, 2015 06:57
-
-
Save blaisethomas/f5f4c4a104804e5c80e0 to your computer and use it in GitHub Desktop.
Q2 // What is the output ?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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