Larry Wall schreef:

> I suspect ordered composition is going to be rare enough that we can
> simply dehuffmanize it to
> 
>     $x does A;
>     $x does B;
>     $x does C;

Maybe use a list-like notation? 

  $x does (A, B, C,) ;
  $x does (A ; B ; C) ;

  $x does [A, B, C,] ;
  $x does [A ; B ; C] ;

-- 
Groet, Ruud

Reply via email to