Re: [PATCH] typo fix for spec S05

2010-11-22 Thread Moritz Lenz
Am 22.11.2010 08:39, schrieb Hongwen Qiu: -argument vary faster than the left. In other words, C and C|| establish +argument very faster than the left. In other words, C and C|| establish Although it looks like a typo, to vary is indeed the correct verb here (means as much as changes

Re: [PATCH] typo fix for spec S05

2010-11-22 Thread Hongwen Qiu
On 11/22/2010 04:01 PM, Moritz Lenz wrote: Although it looks like a typo, to vary is indeed the correct verb here I'm not a native English speaker, so sorry for the noise.

[perl #79642] [BUG] When a hash isn't bound to an optional %-sigilled parameter, something weird ends up in it in Rakudo

2010-11-22 Thread Carl Mäsak via RT
On Mon Nov 22 16:06:07 2010, masak wrote: masak rakudo: sub foo($a, %h?) { bar($a, %h) }; sub bar($a, %h?) { say alive! }; foo(42) p6eval rakudo : OUTPUT«Method 'HOW' not found for invocant of class 'Hash'␤ in 'bar' at line 1 [...] masak rakudo: sub foo($a, %h?) { say %h.WHAT }; foo(42)