- or download this
my $lexical="Value";
our $dynamic="Value";
- or download this
#assuming warnings and strict
our $Variable="Variable";
...
print @Other_Variable;
print Other_Variable();
print Other_Variable "Written to Other_Variable at ".localtime();
- or download this
sub dump_symbol_table {
print "SYMBOL TABLE\n---------------------------------------------
+----------\n";
...
BEGIN { dump_symbol_table }
END { dump_symbol_table }
- or download this
Other_Variable = '*main::Variable'
...
...
...
\ = '*main::\'
_ = '*main::_'