From: "Austin Hastings" <[EMAIL PROTECTED]>
> Perl 5Perl 6
> -
> $name = "This" . "that"; $name = "This" "+" "that";
$name = "+" "+" "+" "+"; # uh???
> On Thu, 12 Apr 2001, Dave Storrs wrote:
> ...
> > We could then just add a -7 flag.
>
> Or, just use:
>
> #!/usr/bin/perl6
>
To solve this versioning issue, is there a way Perl 6 compiler can just
figure out what's being fed? I mean, without saying anything using options
or pragmas. There must
From: "Dan Sugalski" <[EMAIL PROTECTED]>
> While I don't know if Larry will mandate it, I would like this code:
>
>open PAGE, "http://www.perl.org";
>while () {
> print $_;
>}
>
> to dump the HTML for the main page of www.perl.org to get dumped to
stdout.
>
Now I would like t