If you could explain the flow and how/why we can create a module to run with -Mm it will be helpful
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
-Mfoosimply generates the codeuse foo;and places it at the beginning of the code to be compiled.-mfoogeneratesuse foo ();-Mfoo=bar,bazgeneratesuse foo ('bar','baz');and so does-mfoo=bar,baz— that is, there stops being a difference between-Mand-mwhen you use the form with an equal sign, but without it,-mgenerates the “non-import” form ofuse.This is all documented in perlrun.