On Fri, Jul 14, 2006 at 04:34:26PM +0200, Dr.Ruud wrote: : Aaron Sherman schreef: : : > given $_ { : > when $x {...} : > } : > : > or : > : > $_ ~~ $x : : Can that be written as ".~~ $x"? No, but you might just possibly get away with writing: .infix:<~~>($x) assuming that the $_.foo($x) SMD eventually fails over to foo($_,$x) MMD. But that doesn't seem to be much of an improvement over "when $x". LarryThread Previous | Thread Next