A compound operator (a block) consists of one or more operators of any type enclosed in braces {}. The closing brace must not be followed by a semicolon (;).
重文処理(ブロック)は、中括弧 { } で囲まれた1つまたは複数のさまざまな型で構成されます。その閉じ中括弧の終りには、セミコロン (;) を後に続けてはいけません。
Examples:
例:
1 2 3 4 5 | if(x==0) { Print("invalid position x=",x); return; } |