Help for this page

Select Code to Download


  1. or download this
    if ($some_variable eq 'x') {
       $count = 14;
    ...
    for $i (0 .. $count) {
       do some stuff
    }
    
  2. or download this
    #constant declaration area at top of script
    $value_1 = 14;
    ...
    for $i (0 .. $count) {
       do some stuff
    }
    
  3. or download this
    #constant declaration area at top of script
    $count{'x'} = 14;
    ...
    for $i (0 .. $count{$some_variable}) {
       do some stuff
    }