Language operators describe some algorithmic operations that must be executed to accomplish a task. The program body is a sequence of such operators. Operators following one by one are separated with a semicolon.
言語処理のタスクを実行するために、実行する必要がある一部のアルゴリズム処理について説明します。プログラム本体は、このような処理の連続です。続く処理の1つ1つはセミコロンで区切ります。
One operator can occupy one or several lines. Two or more operators can be located in the same line. Operators that control over the execution order (if, if-else, switch, while and for) can be nested into each other.
1つの処理は1つ、または複数の行に渡ることができます。2つ、あるいはもっと多くの処理が同じ行に配置できます。実行命令を制御する処理(if, if-else, switch, while, for)は互いに入れ子にすることができます。
Examples:
例:
1 2 | if(Month() == 12) if(Day() == 31) Print("Happy New Year!"); |