Conditionally executes a group of statements, depending on the value of an expression.
|
---|
@if (
condition1
)
text1
[@elif (
condition2
)
text2]
[@else
text3]
@end |
Arguments
- condition1, condition2
-
Required. An expression that can be coerced into a Boolean expression.
- text1
-
Optional. Text to be parsed if condition1 is true.
- text2
-
Optional. Text to be parsed if condition1 is false and condition2 is true.
- text3
-
Optional. Text to be parsed if both condition1 and condition2 are false.
Remarks
Example
The following example illustrates the use of the @if...@else...@end statement.
В | Copy Code |
---|
@if (@_win32)
print("Operating system is 32-bit.");
@else
print("Operating system is not 32-bit.");
@end |
Requirements
See Also