Skip to content

Instantly share code, notes, and snippets.

@ColinDKelley
Created September 24, 2012 16:28
Show Gist options
  • Save ColinDKelley/3776850 to your computer and use it in GitHub Desktop.
Save ColinDKelley/3776850 to your computer and use it in GitHub Desktop.
Math.min and Math.max
module Math
def self.min *args
args.min
end
def self.max *args
args.max
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment