Help for this page

Select Code to Download


  1. or download this
    our %GLOBAL = {
        dir1 => "/path/to/directory"
        dir2 => "/path/to/another"
    };
    
  2. or download this
    our %GLOBAL = (
        dir1 => "/path/to/directory"
        dir2 => "/path/to/another"
    );
    
  3. or download this
    our $GLOBAL = {
        dir1 => "/path/to/directory"
        dir2 => "/path/to/another"
    };