in reply to Re: Location of 'use' statements (tye)
in thread Location of 'use' statements
#!/usr/bin/perl use strict; use warnings; package FooBar; use Some::OO::Module (); use Some::Function::Module qw( Func1 Func2 ); use base 'Quux'; use vars qw($VERSION); $VERSION= 1.001; use constant _IdNo => 0; use constant _Name => 1; use constant _Pos => 2;
Makeshifts last the longest.
|
|---|