Skip to content

Instantly share code, notes, and snippets.

@huned
Created July 22, 2009 23:58
Show Gist options
  • Save huned/152403 to your computer and use it in GitHub Desktop.
Save huned/152403 to your computer and use it in GitHub Desktop.
class Market
def net_worth
investors.map(&:net_worth).sum
end
def capitalization
net_worth - investors.map(&:cash).sum
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment