in reply to Re: (Guildenstern) Re: New module usage
in thread New module usage
is the same as#!/usr/bin/perl -w -I. use strict; use ModuleToTest;
I happen to like the use_lib method better, as it is more readilly apparent what you are doing (but still might warrant a comment.)#!/usr/bin/perl -w use strict; use lib '.'; use ModuleToTest;
|
|---|