# New Ticket Created by Lee Standen
# Please include the string: [perl #63094]
# in the subject line of all future correspondence about this issue.
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=63094 >
Hi,
I've just tried to write a simple perl program in Windows, before trying
it in Linux, and encountered the following problem:
CODE
====================================================
use v6;
say "WOOT";
class Foo {
method bar () {
say "bar";
}
}
my Foo $f .= new;
$f.bar();
say "WOOTY";
====================================================
Testing on Windows (0.9.0 binary from parrot website):
C:\...\Perl6Test>perl6 -c test.pl
syntax OK
C:\...\Perl6Test>perl6 test.pl
C:\...\Perl6Test>
====================================================
Testing on Linux (0.9.0 source from parrot website):
# perl6 -c test.pl
syntax OK
# perl6 test.pl
WOOT
bar
WOOTY
====================================================
It was suggested by the guys in #perl6 on freenode that I email this to
you guys as a possible bug.
Thanks!