Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
In Ruby what does “=>” mean and how does it work?

Just wondering what the => operator does in Ruby?

share|improve this question

marked as duplicate by Tim Cooper, Andrew Grimm, Jeff Atwood May 7 '11 at 11:35

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 6 down vote accepted

It points to a value of a key in a hash :

{:key => 'value'}
share|improve this answer
4  
It's also used in the rescue statement to assigne the rescued exception to a variable. begin ; rescue => e ; end – Simone Carletti May 5 '11 at 21:43

Not the answer you're looking for? Browse other questions tagged or ask your own question.