Farley, Peter wrote, in part: >Use SPACE COMMA at the end of each separate line of arguments except the last line with the closing parenthesis.
Doesn't actually need the space, of course, though my personal style would use it for readability. It's just a trailing comma that makes it continuation. From Rexx's perspective: rc = function(arg1,, arg2) is identical to: rc = function(arg1, , arg2) Personally, I use a space after a comma, and one before a continuation comma: rc = function(arg1, arg2, , arg3) I find this makes it easier to distinguish the arguments when reading, and easy to find continued lines (by looking for "space comma space"). YMMV. .phsiii ---------------------------------------------------------------------- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [email protected] with the message: INFO IBM-MAIN
