Text EN Version 1.91

Comments in Engine Script

Description

In Engine Scripts and in Engine Import Scripts (SECTION INIT/SECTION PROCESSING/SECTION EOF) comments can be specified.
A comment is introduced by /* and terminated by */.
Such a comment can appear anywhere in the program.
(Except inside quotation marks (""), where it is interpreted as text.)

Examples:

/*@LogReport("TEST1");*/
@LogReport("TEST2");

For these program lines, only @LogReport("TEST2"); would be executed.
/*@LogReport("TEST1");*/ is a comment.

@LogReport("Test line 1");
/* This is a comment*/
@LogReport("/*This is TEXT*/");

/* This is a comment*/ is a comment.
The lines @LogReport("Test line 1"); and @LogReport("/*This is TEXT*/"); are comment-free program lines that are executed.

Note : This text was machine-translated and may contain inaccuracies.