- or download this
#!/usr/bin/perl
use MyClass;
my $obj = MyClass->new();
- or download this
package MyClass;
use Class::Std;
...
bless $hash_ref, 'MyClass';
1;
- or download this
Name "MyClass::DEMOLISH" used only once: possible typo at /usr/share/p
+erl5/Class/Std.pm line 523.
- or download this
sub DESTROY {
my ($self) = @_;
...
}
}
}
- or download this
package MyClass;
use Class::Std;
...
print "demolishing...\n";
}
1;
- or download this
#!/usr/bin/perl
use warnings;
...
BEGIN {
foo('bar');
}
- or download this
Name "main::bar" used only once: possible typo at ./test2.pl line 6.
- or download this
#!/usr/bin/perl
use warnings;
...
foo('bar');
- or download this
#!/usr/bin/perl
use warnings;
...
foo('bar');
foo('bar');
}
- or download this
#!/usr/bin/perl
use warnings;
...
foo('bar');
foo('baz');
}
- or download this
Name "main::bar" used only once: possible typo at ./test2.pl line 6.
Name "main::baz" used only once: possible typo at ./test2.pl line 6.
- or download this
#!/usr/local/bin/perl
#
...
$foo = 1;
$baz = 1;
}
- or download this
Name "main::bar" used only once: possible typo at ./test3.pl line 7.