if (condition) [then] ... [else if | else ] ... endif
conditionがtrueなら、そのifの内容が実行されます。
Note
現在のところ、if節内のステートメントは、ifの行とは別の行で定義しなければなりません。 つまり、“if ($F == 1) echo Frame One”のようなステートメントは動作しません。
Examples ¶
if ( $F == 1 ) then echo Frame One else echo Not Frame One endif