- or download this
1 #!/usr/bin/perl
2 use warnings;
...
24 $a = "bob";
25
26 print Dumper( $a, $b, $a2 );
- or download this
:! ./test.pl
Warning: 'b' session variable set multiple times in one call to tsvars
...
$VAR1 = 'bob';
$VAR2 = 'B2';
$VAR3 = 'bob';
- or download this
1 use strict;
2 use warnings;
...
67 }
68
69 1;