Last Update 2008/05/18
文の最後は必ずセミコロンで終わります。ただし、ブロックの最後の文は除きます。
(例)
# セミコロンで終わる単純文
print "test1\n";
if (2 > 1)
{
print "test2\n"
# ブロックの最後の文はセミコロンが無くても間違いではない
}
実行結果
test1
test2
© loose-info.com All Rights Reserved.