http://www.perlmonks.org?node_id=992611


in reply to Re^2: How to pass an argument to a Module?
in thread How to pass an argument to a Module?

$ perl -MO=Deparse,-p -e " IMPORT { warn(666); } " do { warn(666) }->IMPORT; -e syntax OK $ perl -MO=Deparse,-p -e " sub IMPORT { warn(666); } " sub IMPORT { warn(666); } -e syntax OK