Re: Dumb doc question...

2006-08-21 Thread Agent Zhang
On 8/17/06, Thom Boyer [EMAIL PROTECTED] wrote: On 8/16/06, Agent Zhang [EMAIL PROTECTED] wrote: On 8/17/06, Mark J. Reed [EMAIL PROTECTED] wrote: Where can I find a pod2html that groks the p6 version of POD? I want to format my fresh-from-svn copies of the doc... And there're also an

Re: multi-line comments, C macros, Pod abuse

2006-08-21 Thread Joshua Hoblitt
On Mon, Aug 21, 2006 at 12:06:36AM +0100, Andrew Suffield wrote: On Sun, Aug 20, 2006 at 03:55:56PM -0600, Luke Palmer wrote: Why would you care about introducing a new lexical scope? You would care about that if you used a variable you declared in the commented code in the code below

Re: multi-line comments, C macros, Pod abuse

2006-08-21 Thread markjreed
I think this is not even a metaprogramming issue so much as a programming environment one. I mean, if your editor doesn't make it easy to stick a # at the beginning of a bunch of lines with one action, and likewise remove them later, you need to get a new editor. :) On 8/21/06, Joshua Hoblitt

[svn:perl6-synopsis] r11287 - doc/trunk/design/syn

2006-08-21 Thread larry
Author: larry Date: Mon Aug 21 09:03:25 2006 New Revision: 11287 Modified: doc/trunk/design/syn/S05.pod doc/trunk/design/syn/S06.pod Log: Clarified that leading whitespace eats all subsequent whitespace. Modified: doc/trunk/design/syn/S05.pod

Re: [svn:perl6-synopsis] r11287 - doc/trunk/design/syn

2006-08-21 Thread Aaron Crane
[EMAIL PROTECTED] writes: +To pass a regex with leading whitespace you must use the parenthsized form. ... +To pass a string with leading whitespace you must use the parenthsized form. Hi. I think that needs an s:g/parenthsized/parenthesized/ -- Aaron Crane

[svn:perl6-synopsis] r11290 - doc/trunk/design/syn

2006-08-21 Thread larry
Author: larry Date: Mon Aug 21 09:39:51 2006 New Revision: 11290 Modified: doc/trunk/design/syn/S05.pod Log: Typo from Aaron Crane++ Modified: doc/trunk/design/syn/S05.pod == --- doc/trunk/design/syn/S05.pod

clarify: does Dog is Mammal load Mammal for you?

2006-08-21 Thread Mark Stosberg
In S12, we see a number examples of: class Dog is Mammal http://dev.perl.org/perl6/doc/design/syn/S12.html However, it's not clear if it is necessary to preload Mammal for Dog to function properly here, or what that syntax would be. Testing with current version of pugs, this doesn't

Re: clarify: does Dog is Mammal load Mammal for you?

2006-08-21 Thread Darren Duncan
On Mon, 21 Aug 2006, Mark Stosberg wrote: In S12, we see a number examples of: class Dog is Mammal http://dev.perl.org/perl6/doc/design/syn/S12.html However, it's not clear if it is necessary to preload Mammal for Dog to function properly here, or what that syntax would be.

Re: clarify: does Dog is Mammal load Mammal for you?

2006-08-21 Thread Jonathan Scott Duff
On Mon, Aug 21, 2006 at 11:25:26PM -0500, Mark Stosberg wrote: In S12, we see a number examples of: class Dog is Mammal http://dev.perl.org/perl6/doc/design/syn/S12.html However, it's not clear if it is necessary to preload Mammal for Dog to function properly here, or what that syntax