On Mon Dec 29 12:49:10 2008, jhorwitz wrote:
> assume the following three files:
> 
> Bar.pm:
>      say "in Bar.pm";
> 
> foo1.p6:
>      module Foo;
>      use Bar;
>      say "in Foo";
> 
> foo2.p6:
>      use Bar;
>      module Foo;
>      say "in Foo";

This second version (foo2.p6) isn't valid Perl 6.  Rakudo doesn't
recognize it as an error yet, but it is one.

That still leaves the question of why foo1.p6 is changing for the
compiled versus non-compiled version -- I'll look into it.

Pm



Reply via email to