MEL ステートメントはすべての末尾にセミコロンが必要です。殆どの場合、これは必須です。
print("End with a semicolon."); print("Semicolons separate"); print(" different statements.");
空白(スペース、タブおよび改行)は MEL では無視されます(文字列内は除く)。
他の言語とは異なり、MEL では改行で文が区切られることはありません。したがって、次の文はエラーになります。
print("Hello") print("There")
print("Hello"); print("There")
MELでは、大半の言語とは異なり、ブロック内に文が 1 つしかなくても、ブロック内のすべての文の末尾にセミコロンを付ける必要があります。
if ($s > 10) {print("Glonk!")} // Syntax error. if ($s > 10) {print("Glunk!");} // Notice the semicolon.