Unmatched "/*" or quote

Synopsis
This is an error in the way the REXX script is written.

Cause
There is the opening comment mark /* without the closing comment mark */.

Cure
Count the opening and closing comment marks and make sure that there are the same number of each. (It's ok to embed comments inside of other comments).

Cause
There is the opening quote mark " or ' without the closing quote mark.

Cure
Count the opening and closing quotes and make sure that there are the same number of each. If you're using a single quote inside of a string, for example, to make the contraction can't, then make sure that you use double quotes around the whole string. Vice versa if using a double quote inside of a string.