Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    $foo = 'bar';
    $baz = 'qux';
    
  2. or download this
    #!/usr/bin/perl
    use strict;
    $main::foo = 'bar';
    $main::baz = 'qux';
    
  3. or download this
    #!/usr/bin/perl
    use strict;
    $main::foo = 'bar';
    $main::baz = 'qux';
    $main::foo .= $main::bza;
    
  4. or download this
    #!/usr/bin/perl
    use strict;
    ...
    $foo = 'bar';
    $baz = 'qux';
    $foo .= $bza;