Created
July 1, 2018 18:51
-
-
Save lbvf50mobile/37c67524c48bf1c68ae171a4257dc826 to your computer and use it in GitHub Desktop.
logger for @PingvinValentin
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 Logger | |
def self.log(m) | |
@@log ||= [] | |
@@log.push m | |
end | |
def self.get_log | |
@@log || [] | |
end | |
end | |
(1..10).each{|x| Logger.log("the #{x}")} | |
p Logger.get_log |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment