- or download this
BEGIN { $^W = 1; }
use AA::BB;
...
}
};
test.pl syntax OK
- or download this
#! /usr/bin/perl -w
use strict;
...
use AA::BB;
eval { die AA::BB->new; } or print "Caught exception $@";
- or download this
package AA::BB;
...
return bless {},shift;
}
1;
- or download this
die called with args 'AA::BB=HASH(0x81761c8)'