Skip to main content

#;

Creates a single line comment.

Description

This macro preprocessor directive creates a single line comment that does not appear in .int code. The comment appears only in either .mac code or in an include file. The #; appears at the beginning (column 1) of the line. The comment continues for the remainder of the current line. It has the form:

#; Comment here...

where the comment follows the #;.

#; makes an entire line a comment. Compare with the ##; preprocessor directive, which makes the rest of the current line a comment.

FeedbackOpens in a new tab