Pascal - Multi line comment: { }
In the case of multi-line comments from start tags to the end tags, each character is interpreted as a comment. these characters will not be evaluated.{ }
Description
{ }
Examples
Pascal
Multi line comment the possible of use:x := 5 * 4;{ x = 20
y = 3 / 2;
f(5) } z := 5;
Pascal
Other pieces of example codes:{ x = 98}
{ x=100}
{ x = 5}
{ x = 4}
{ a1 = false}
{ x = 280}
Multi line comment in another programming language:
Differences to: