Help for this page

Select Code to Download


  1. or download this
    print("first");
    BEGIN {
    ...
      use ModX;
    }
    print("last");
    
  2. or download this
    use lib '../';           # Before "delete" because of "use"
    use ModX;                # Before "delete" because of "use"
    delete $INC{'ModX.pm'};  # Before "first" because of "BEGIN"
    print("first");
    print("last");