Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    our ($database);
    
    $database = "test1";
    
  2. or download this
    use strict;
    use warnings;
    ...
    our ($database);
    
    $database = "test2";
    
  3. or download this
    require "a.pl";
    print "$database\n";
    ...
    print "$database\n";
    require "a.pl";
    print "$database\n";
    
  4. or download this
    test1
    test2
    test2
    
  5. or download this
    test1
    test2
    test1