On Mon Jun 28 09:03:34 2010, bbkr wrote:
> On Kiev build there is now warning about using deprecated POD syntax.
> 
> # perl6 -e 'eval "=pod\nsay 666;\n=cut"; say $!'
> Obsolete pod format, please use =begin/=end instead at line 1, near
> "pod\nsay 66"
> 
> However bare '=pod' still makes code executable
> 
> # perl6 -e 'eval "=pod\nsay 666;"; say $!'
> 666
> 
> So not fixed yet.

The problem seems to be limited to =pod in eval;

$ cat foo
eval "=pod\nsay 666;"
$ ./perl6 foo
666
$ cat bar
=pod
say 666;
$ ./perl6 bar
$

-- 
Will "Coke" Coleda

Reply via email to