例: If...Then...Else statement

x の初期値はゼロであるため、True が表示されます。

Dim x As Integer
If x% > 0 Then Print FALSE Else Print TRUE
' Output:
' True

x の初期値はゼロであるため、True が表示されます。