Created
June 15, 2021 18:31
-
-
Save lamont-granquist/009c0ee9c3bd2c3cb88a9e25701ad220 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 | |
def initialize | |
self.all_cars << self | |
end | |
def self.all_cars | |
@all_cars ||= [] | |
end | |
def self.reset! | |
@all_cars.empty! | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment