发布日期: 04/13/2021

Comments

Comments are notes in the code that are ignored by the JSL processor (or parser). You include comments to describe sections of the script. Comments are also convenient for removing portions of a script temporarily. For example, you can insert comment symbols around code that might be causing an error and then rerun the script.

Type the comment symbols around code that you want to comment. The following example shows code commented with /* */ in the middle of a line. When the script is run, JMP considers both expressions to be identical.

tax /*percentage*/ = .25;
tax = .25;

Table 5.2 describes the comment symbols.

Table 5.2 Comment Symbols 

Symbol

Syntax

Explanation

//

// comment

Begins a comment. The comment does not have to be at the beginning of a line, but everything up to the end of the line is a comment.

/* */

/* comment */

Begins and ends a comment. This comment can appear in the middle of a line. Script text before and after the comment is parsed normally.

//!

//!

Add //! to the first line of the script, and the script runs automatically when opened in JMP. (In other words, the script editor does not open.)

需要更多信息?有问题?从 JMP 用户社区得到解答 (community.jmp.com).