in reply to Header file management
There are several modules on CPAN that can do this for you (the AM post provided a few links). I've used Syntax::Collector, here's a working example based on your post:
package MyCommonUses; use warnings; use 5.018; use Syntax::Collector q{ use strict 0; use warnings 0; use feature 0 ':5.18'; use Data::Dumper 0; use Scalar::Util 0 qw(blessed); use Cwd 0 qw(cwd abs_path); }; 1;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Header file management
by smaines (Novice) on Apr 30, 2018 at 15:32 UTC | |
by haukex (Archbishop) on Apr 30, 2018 at 21:12 UTC |