Help for this page

Select Code to Download


  1. or download this
    /////  MyConst.pm ////////////
    package MyConst;
    use Readonly;
    
    Readonly::Scalar $const1 => 1;
    ///////// END ////////////
    
  2. or download this
    //////  test.pl /////////
    use MyConst;
    
    print $const1;  
    ////////// END //////////