Help for this page

Select Code to Download


  1. or download this
    use Readonly;
    Readonly $C1 => 1;
    ...
        }
    }
    print time() - $t0;
    
  2. or download this
    use constant C1 => 1;
    
    ...
        }
    }
    print time() - $t0;