5
votes
Ruby eval behaves differently in irb versus in a file
It's because the machine variable was not already defined when eval was run. A more concise example:
Works in IRB but not as a script
eval 'x = …
