Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use warnings;
    ...
    our $x = 12;
    require './2.pl';
    print "Done\n";
    
  2. or download this
    #!/usr/bin/perl
    use warnings;
    ...
    our $x;
    
    print $x, "\n";
    
  3. or download this
    12
    Done