Help for this page

Select Code to Download


  1. or download this
      <statement> <modifier>
    
  2. or download this
      <modifier>
      {
        <statement>
      }
    
  3. or download this
      <statement> if $a > 1;
      <statement> unless $true;
    
  4. or download this
      <statement> for @a;
      <statement> for 1..10;
      <statement> for keys %hash;
    
  5. or download this
      <statement> <modifier> <modifier>
    
      <statement> for @a unless $true;