Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use strict;
    ...
       my $bar = "true";
    }
    print $bar;
    
  2. or download this
    my $bar;
    if ($foo) {
       $bar = "true";
    }
    print $bar;
    
  3. or download this
    {
    my $bar;
    ...
    }
    print $bar;
    }
    
  4. or download this
    if ($foo) {
       my $bar = "true";
    }
    print $bar;