Help for this page

Select Code to Download


  1. or download this
    BEGIN{system("tar -xzvf XX.tar.gz")}
    
    use strict;
    use lib "./"
    use XX;
    
  2. or download this
    system("tar -xzvf XX.tar.gz");
    
    use strict;
    require './XX.pm';
    XX->import();