Help for this page

Select Code to Download


  1. or download this
    my $foo = 'bar';
    
  2. or download this
    #!/usr/bin/perl
    use strict;
    ...
    foo();
    
    print $bar; # error
    
  3. or download this
    #!/usr/bin/perl
    use strict;
    ...
    foo();
    
    print $bar; # prints 'qux'