Skip to content

Instantly share code, notes, and snippets.

@marcagas
Created March 14, 2018 00:30
Show Gist options
  • Save marcagas/6159bd91339a5b7d5a5254525e2b0e21 to your computer and use it in GitHub Desktop.
Save marcagas/6159bd91339a5b7d5a5254525e2b0e21 to your computer and use it in GitHub Desktop.
class Num
extend Memoist
def sample_num
Random.rand(100)
end
memoize :sample_num
class << self
extend Memoist
def rand
Random.rand(100)
end
memoize :rand
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment