Skip to content

Instantly share code, notes, and snippets.

@moonglum
Created August 24, 2016 13:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save moonglum/0bbe55713e37c9aac7adbb340d52efd5 to your computer and use it in GitHub Desktop.
Save moonglum/0bbe55713e37c9aac7adbb340d52efd5 to your computer and use it in GitHub Desktop.
x = [200, 100, 300].reduce(Float::INFINITY) do |smallest, current|
if current < smallest
current
else
smallest
end
end
p x
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment