| http://www.w3.org/ns/prov#value | - Otherwise, the Else block is executed.Here is an example of an If statement that pops up a message box if a variable is greater than 10.Code: Select all$var = 20If $var > 10 Then MsgBox(0, Example, $var was greater than 10!)Else MsgBox(0, Example, $var was less than 10)EndIfIn the example above the expression $var > 10 evaluate
|