Last active
October 18, 2016 06:16
-
-
Save DavidAntaramian/4201fa7639f745a163119a6e6db1d5eb to your computer and use it in GitHub Desktop.
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_accesor :color, :wheels | |
def initialize(color, wheels) | |
@color = color | |
@wheels = wheels | |
end | |
def forward() | |
puts "Driving forward" | |
end | |
def reverse() | |
puts "Driving backward" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment