basic.if
Initiates logical expression.
Syntax
if logical.expression [ then | else ] statement.block if logical.expression then statement.block [ else statement.block ]
Description
tests the result of a logical expression. Depending on whether the expression evaluates to either 'true' or 'false', the statement(s) following the 'then' or 'else' clauses respectively are executed.
The statements may be placed on a single line (single-line format) or in a block structure (multi-line format). The two formats are functionally identical.
If more than one statement is contained in either the 'then' or 'else' clause, they must be separated by semicolons.
The single-line format:
if logical.expresssion then statements {else {statements}
where 'statements' represents {statement{; statement{;...}
The single and multiline formats may be combined. Thus, the general format of the multiline statement takes on three forms as shown below:
form 1:
if logical.expresssion then statements else
statements
.
.
end
form 2:
if logical.expresssion then
statements
.
.
end else statements
form 3:
if logical.expresssion then
statements
.
.
end else
statements
.
.
end
form 4:
if logical.expresssion else
statements
.
.
end
form 5:
if logical.expresssion then
statements
.
.
end
If the logical.expresssion evaluates to non-zero, it is considered true. If it evaluates to 0, it is considered false.
If there is no clause for the current condition, the next sequential statement following the entire if statement is executed.
The 'then' clause of an 'if' statement is optional if the 'else' clause is present. However, one or the both must be present.
Complex conditions may be tested by using 'and' and 'or' connectives. No matter how complex the overall expression may be, each condition eventually evaluates to a simple true or false.
Many statements accomodate the 'then/else' construct, and more information is available under the topic, 'then/else construct'.
Example
if answer = 'exit' then stop
if answer = 'y' then print 'ok'; cnt=cnt+1; goto 20
if answer = 'y' then
print 'ok'
cnt=cnt+1
end
if answer = 'exit' then gosub 100 else gosub 200
if answer = 'y' then print 'ok';cnt=cnt+1 else print
'no good';stop
if answer = 'y' then
print 'ok'
cnt=cnt+1
end else
print 'no good'
end
See Also
User Comments
What do you think?
Share your experience or ask a question by using the form below.
Login to leave your comments.
