Code comments

Read(58) Label: code comment,

Description:

Code comments explain the code.

Syntax:

/*...*/

Note:

Code comments explain the code and will be skipped during parsing. The comments can be nested; and contents enclosed by  double quotations are not a comment. Cell names in a comment will be auto-adjusted during editing.

Example:

 

A

B

 

1

 

 

 

2

for 5

 

 

3

 

>A1=A1+A2

 

4

 

/* =A1 */

Skip B4’s contents during parsing as they are a comment.

5

 

"/* =A1 */"

The contents enclosed in double quotations are not a comment and the code returns a string.