Result = Expression1 And Expression2
Expression1 | Expression2 | Result |
---|---|---|
True | True | True |
True | False | False |
False | True | False |
False | False | False |
文字列 | True | True |
文字列 | False | False |
文字列 | 文字列 | True |
Empty値 | True | False |
Empty値 | False | False |
Empty値 | Empty値 | False |
' 変数number1の値が1以上10以下のとき,実行ファイル"Day10.SPT"を
' 呼び出す。
number1 = Day ( )
If 1 <= number1 And number1 <= 10 Then
Exec ( "Day10.SPT", True )
End If