Help for this page

Select Code to Download


  1. or download this
    KEYWORD ( CONDITION )
    {  # begining of block of code to exec marked by {
    ...
       # stuff you want to do goes in here
    
    }  # end of block of code to exec marked by }
    
  2. or download this
    if ( $some_condition ) {
        # some_condition is true
    ...
    else {
        print "Some condition is false!\n";
    }