From: Caleb Clausen Date: 2009-08-23T11:40:22+09:00 Subject: [ruby-core:25047] Re: Proposal: Simpler block format James Edward Gray II wrote: > The new syntax is growing on me. I think it looks pretty good with the > new Hash syntax, for example: > > call_method load: ->() { proc_1 }, > save: ->() { proc_2 }, > quit: ->() { proc_3 } It looks even better if you leave off the unnecessary parens: call_method load: ->{ proc_1 }, save: ->{ proc_2 }, quit: ->{ proc_3 }