in reply to Re^2: Aborting a module (return 1)in thread Aborting a module
Confirmed, it doesn't work from within BEGIN.
>type M.pm package M; BEGIN { return 1; } print "Point A\n"; return 1; print "Point B\n"; 1; >perl -e "use M;" Point A [download]