Skip to content

Instantly share code, notes, and snippets.

@jeena
Created May 4, 2010 23:41
Show Gist options
  • Save jeena/390197 to your computer and use it in GitHub Desktop.
Save jeena/390197 to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby -wKU
def ∑ *args
args.inject do |sum, x|
sum + x
end
end
puts ∑ 1, 2, 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment