Help for this page
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 }
if ( $some_condition ) { # some_condition is true ... else { print "Some condition is false!\n"; }