- or download this
use strict;
my $variable_with_a_very_long_name = 1;
print "The value is >>$varaible_with_a_very_long_name<<";
- or download this
# for global variables:
use vars qw(@users $account);
- or download this
for $user (@users) {
$message = "Hello $user!";
...
for my $user (@users) {
my $message = "Hello $user!";
};