use Cwd;
This will import the Cwd module at compile time and import its default symbols, i.e. make some of the module's variables and functions available to the code using it. (See also: perldoc -f use.)
Generally this is will do the right thing. Sometimes, however, you will want to control whic...