Help for this page

Select Code to Download


  1. or download this
    A.pm
    ----
    # Order doesn't matter.
    BEGIN { do 'Constants.pm' }
    use B;
    
  2. or download this
    B.pm
    ----
    BEGIN { do 'Constants.pm' }
    
  3. or download this
    A.pm
    ----
    # Order doesn't matter.
    use Constants;
    use B;
    
  4. or download this
    B.pm
    ----
    use Constants;