Help for this page

Select Code to Download


  1. or download this
    package X;
    
    ...
    1
    2
    3
    
  2. or download this
    package Y;
    
    while(<DATA>){ print "Y:".$_ }
    ...
    40
    50
    60
    
  3. or download this
    # main 
    use lib '.';
    ...
    print "X opened: ".X::check_data()
     ."\n"."Y opened: ".Y::check_data()
     ."\n";
    
  4. or download this
    X:1
    X:2
    ...
    hehh at x.pm line 7, <DATA> line 6.
    Y opened: 1
    Y opened: 1