luka frelih writes:
> >But how should the two interpretations of x.x be resolved? Is that
> >concatenation or method calling?
> 
> currently, the  pir line
>       S5 = S5 . 'foo'
> produces
>       error:imcc:object isn't a PMC
> 
> concatenation with . seems to be gone
> i cannot think of a good replacement for it

Well, Perl 6 uses ~ .  I think that would be a fair replacement:

    S5 = S5 ~ 'foo'

Luke

Reply via email to