Skip to content

Instantly share code, notes, and snippets.

@kkchu791
Created November 12, 2015 07:16
Show Gist options
  • Save kkchu791/28192970c17a1be7224f to your computer and use it in GitHub Desktop.
Save kkchu791/28192970c17a1be7224f to your computer and use it in GitHub Desktop.
class Logger
def self.log(random)
File.open("./logfile.txt", "a") { |f| f.puts "#{random}" }
end
end
class Charlie
def random_number
Logger.log(rand(10000000))
end
end
c = Charlie.new
c.random_number
c.random_number
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment