- or download this
use strict; #strict is same color as use, which is orange
...
use vars; #vars is orange
use Benchmark qw(:all); #Benchmark is white
use List::BinarySearch; #A module I installed is white
- or download this
BEGIN { require Module; Module->import( LIST ); }
- or download this
@ISA = qw(Exporter);
@EXPORT = qw(testsub);
@EXPORT_OK = qw($string);
- or download this
use Module ();