Difference between revisions of "Command:If"
Jump to navigation
Jump to search
(→Syntax) |
(→Syntax) |
||
Line 1: | Line 1: | ||
== Syntax == | == Syntax == | ||
− | if (condition) | + | if (condition) statement1<BR/> |
− | + | [else statement2] | |
− | [else | ||
− | |||
== Description == | == Description == |
Revision as of 20:17, 1 March 2005
Contents
Syntax
if (condition) statement1
[else statement2]
Description
Conditionally executes a group of statements, depending on the value of an expression.