- or download this
package Foo;
1;
__DATA__
line 1
line 2
- or download this
#!/usr/bin/perl -w
use strict;
use Foo;
print while (<Foo::DATA>);
- or download this
{
local $^W;
print while (<Foo::Data>);
}
- or download this
{
now warnings 'once';
print while (<Foo::Data>);
}