Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Declaring blocks as '{|| ... }' will prevent the declaration of a t…
…opic variable (_). This allows blocks to be called as 'block()' without arguments. Example: var block = {|| say "hi" }; block.run; # perfect block.call; # ok block(); # ok
- Loading branch information