Skip to content

Instantly share code, notes, and snippets.

@lbvf50mobile
Created July 1, 2018 18:51
Show Gist options
  • Save lbvf50mobile/37c67524c48bf1c68ae171a4257dc826 to your computer and use it in GitHub Desktop.
Save lbvf50mobile/37c67524c48bf1c68ae171a4257dc826 to your computer and use it in GitHub Desktop.
logger for @PingvinValentin
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