Errors Line Continuation

The comma is used in REXX to split clauses across two or more lines. For example:

call foo a, b, c

may also be written as

call foo a, ,  b, ,  c

It's easy to forget the second comma when breaking a line in the middle of a function parameter list.