On Tue, Jan 18, 2005 at 10:43:00PM -0700, Luke Palmer wrote:
> Oh, I thought I replied, but now that I look over the question I guess I
> didn't. The question was:
>
> Austin Hasting writes:
> > How do I concisely code a loop that reads in lines of a file, then
> > calls mysub() on each letter in
[ cc'ed p6l ]
Matt Fowles wrote:
Leo~
On Wed, 19 Jan 2005 10:02:26 +0100, Leopold Toetsch <[EMAIL PROTECTED]> wrote:
But where does that PerlMMD PMC come from? Does the Perl6 compiler
generate one somewhere?
It is generated by the compiler. During compilation all of the
different MMD functions wi
Leo~
On Wed, 19 Jan 2005 16:26:07 +0100, Leopold Toetsch <[EMAIL PROTECTED]> wrote:
> [ cc'ed p6l ]
>
> Matt Fowles wrote:
> > Leo~
> >
> > On Wed, 19 Jan 2005 10:02:26 +0100, Leopold Toetsch <[EMAIL PROTECTED]>
> > wrote:
> >
> >>But where does that PerlMMD PMC come from? Does the Perl6 compil
Luke Palmer wrote:
Austin Hasting writes:
How do I concisely code a loop that reads in lines of a file, then
calls mysub() on each letter in each line?
Or each xml tag on the line?
And I guess the answer is the same as in Perl 5. I don't understand
what the problem is with Perl 5's approac
On Tue, Jan 18, 2005 at 10:08:57PM -0800, Rich Morin wrote:
: I recently encountered a language, E, which has some very nifty
: features for building distributed systems. The current version
: of E is built on top of Java, but I wonder:
:
: * whether E's features will (could) be supported in P
Austin Hastings writes:
> Luke Palmer wrote:
>
> >Austin Hasting writes:
> >
> >
> >>How do I concisely code a loop that reads in lines of a file, then
> >>calls mysub() on each letter in each line?
> >>Or each xml tag on the line?
> >>
> >>
> >
> >And I guess the answer is the same as in Perl
Uri Guttman writes:
> > "LP" == Luke Palmer <[EMAIL PROTECTED]> writes:
>
> LP> use Rule::XML;
> LP> for <> {
> LP> mysub($_) for m:g/(ÂRule::XML::tagÂ)/;
> LP> }
>
> shouldn't that be in the Grammar namespace? not that we have finalized
> namespaces but i was unde