Alternatives to Lexical Binding with Ruby
Posted in ruby on January 6th, 2008 No Comments »
In ruby the default way to get a name to return a value is via ruby’s lexical scoping rules. Lexical scoping rules use the way the code is written to determine what a variable name means. You can read the code and understand what a variable will mean when a certain piece of code runs. [...]