prev <<
Using use
>> next
push(@INC,'dir');
Because
use
is run at Compile Time, but
push
only at Run Time.
Which means that when
use
is called,
@INC
hasn't been modified.