REM |
Top Previous Next |
The following commands have been implemented in EMUEScript exactly as they are implemented in OLIE™:
Syntax - REM <comment>
Description: This command is used to add remarks or comments to the script that are intended for a human to read and will not be evaluated by EMUE. It is a good practice to write comments indicating what the script is doing. This is useful when creating, debugging and/or manually processing a script for easy to read instructions on what is happening with the script.
Note: In addition to the REM statement, a single quote (apostrophe) is recognized as a comment indicator when it the first character in a line of a script.
Sample 1: The following statement uses the REM command to mark the line as a comment and comment out the line it is on. REM This script posts comments a accounts where charges have been reversed.
Sample 2: The following statement uses the ' single quote (apostrophe) command to mark the line as a comment and comment out the line it is on. 'Modified to handle unitized accounts
|