Help for this page

Select Code to Download


  1. or download this
    use A;
    test1();
    ...
    print 'j';
    sub test2 { ... }
    BEGIN { print 'begin'; }
    
  2. or download this
    require A; A->import() if A->UNIVERSAL::can('import');
    *test1 = sub { ... };
    ...
    test1();
    print 'i';
    print 'j';