On Sun, Jan 11, 2009 at 04:41:12PM -0800, Ovid wrote: : I really don't think this is a bug, but it did confuse the heck out of me at first. This *is* expected behavior due to how {} is interpolated in strings, yes? : : $ perl6 -e 'my $foo = "foo";say "<" ~ $foo ~ ">"' : <foo> : $ perl6 -e 'my $foo = "foo";say "{" ~ $foo ~ "}"' : ~ foo ~
Yep, that's working right. Or at least, working as designed... :) Larry