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
module Transportation | |
class Vehicle | |
def vechicle_method() | |
puts "I am a vehicle" | |
end | |
end | |
class Bicycle < Vehicle | |
attr_accessor :gear, :speed | |
def initialize() |
NewerOlder