| << | >> |
Comments
Comments are pieces of text used to annotate a program. Comments are for the programmer's use only; they are stripped from the source text before parsing.
PPL allows a single-line comment using two adjacent percent signs (%%). The comment can start in any position, and extends until the next new line.
Example:
mwpulse 45 ns %% Comment started here
| << | >> |