our $global_variable;In older Perl programs, you may see the construction
use vars qw($global_variable);which (almost) does the same thing.
use constant PI => 3.1415926539;Note that a dollar sign does not precede the variable name. Such variables cannot be altered in the course of your program.