Eval method in ruby

Eval method in ruby executes string/expression passed as parameter.


Example:

ree-1.8.7-2010.01 > eval(“5+3”)
 => 8 
ree-1.8.7-2010.01 > eval(“a=5”)
 => 5 
ree-1.8.7-2010.01 > eval(“b||=a”)
 => 5 

Its part of ruby meta-programming and not recommended approach unless there is no any alternative to do.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.