Help for this page

Select Code to Download


  1. or download this
    # main.pl
    use ModA;
    use ModB;
    # prints B A
    1;
    
  2. or download this
    # ModA.pm
    package ModA;
    use ModB;
    print("A\n");
    1;
    
  3. or download this
    # ModB.pm
    package ModB;
    print("B\n");
    1;