----- Original Message ----- From: JOSEPH RYAN <[EMAIL PROTECTED]> Date: Wednesday, September 8, 2004 8:58 pm Subject: Re: multiple languages clarification - newbie
> macro prolog is parsed(/
> \: ([
> <[^p]>+ ::
> | <!before ^^prolog\.\s*$$> p
> ]+)
> /) {
> eval($_, "prolog");
> }
Woops, actually, that would need to be:
macro prolog is parsed(m:w/
\: ([
<[^p]>+ ::
| <!before ^^prolog \. ;$$> p
]+)
prolog \. ;
/) {
eval($_, "prolog");
}
But, this is perl6-language stuff anyways. (:
- Joe
