Help for this page

Select Code to Download


  1. or download this
    $i++ if $some_condition;
    #or
    push @a, 'fred' while @a < 10;
    
  2. or download this
    $j--
    , $i++ if $some_condition;
    #or
    print scalar @a
    , push @a, 'fred' while @a < 10;