Comments are used to explain various code parts. Fore uses single line (//...) and multiline ({...}) comments. Comments do not affect the meaning of the program and are not used by compiler.
// example of single line comment
{
example of
multiline
comment
}
{ multiline comment located in one line }
See also: