Help for this page

Select Code to Download


  1. or download this
    $debug = ($debug eq FALSE) ? TRUE : FALSE;
    
  2. or download this
    use strict;
    use constant TRUE  => 1;
    use constant FALSE => 0;
    
    (use other Modules)
    
  3. or download this
    use constant TRUE  => 1;
    use constant FALSE => 0;
    use strict;
    
    (use other Modules)