/* Multi-line comments */
- Last Updated: February 11, 2026
- 1 minute read
- OpenEdge
- Version 13.0
- Documentation
Allows you to add explanatory text to code. The comment begins with /* and ends with */. This type of comment can wrap over multiple lines.
Syntax
|
- comment
- Descriptive text.
Examples
The r-comm.p example uses comments to document the history of procedure modifications.
r-comm.p
|
The r-comm2.p example uses comments to describe what the procedure does.
r-comm2.p
|
The comment symbols that enclose the inner FOR EACH block turn that block into a comment for testing purposes. You can nest comments, so ABL correctly processes any comments already in the bypassed code. Both multi-line comments and single-line comments can be nested inside a multi-line comment.