einarmagnus (Einar Boson)
- Login: einarmagnus
- Registered on: 01/16/2009
- Last sign in: 10/02/2010
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
01/16/2009
-
12:23 PM Ruby Bug #1017 (Rejected): Curly braces {...} and do ... end
- =begin
I gather that curly braces and do..end are supposed to work the same, why then is this ok
def save_block name, &b
@blocks ||= {}
@blocks[name] = b
end
save_block :say_hello do
puts "hello!"
end
...