Help for this page

Select Code to Download


  1. or download this
    my $x = 5 if $t;
    
  2. or download this
    my $x; $x = 5 if $t;
    
  3. or download this
    my $x = 5;
    
  4. or download this
    my $x;
    $x = 5;
    
  5. or download this
    STATEMENT if condition;
    
  6. or download this
    STATEMENT1;
    STATEMENT2;
    ...
    STATEMENTn if condition;  # ?!?
    
  7. or download this
    STATEMENT if condition;
    
  8. or download this
    if (condition) { STATEMENT }
    
  9. or download this
    if ($t) { my $x = 5 }