in reply to Re: Unknown compile error - desperation
in thread Compilation failed, Vendor::Amazon, Vendor::BarnesNoble
one thing I did but couldn't associate with was:use base Vendor::Base;
then I realized that if strict goes after, no problem. Later I figured all out: base is the module and Vendor::Base is the parameter, so quotes are necessary around Vendor::Base. with strict after or without strict, no problem without quote.use strict; use base Vendor::Base;
That's it. Thanks again.
|
|---|