Skip to content

Instantly share code, notes, and snippets.

@DavidAntaramian
Last active October 18, 2016 06:16
Show Gist options
  • Save DavidAntaramian/4201fa7639f745a163119a6e6db1d5eb to your computer and use it in GitHub Desktop.
Save DavidAntaramian/4201fa7639f745a163119a6e6db1d5eb to your computer and use it in GitHub Desktop.
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