Flow-control structures: Difference between revisions

m
→‎call: adjusted the number of omitted arguments. -- ~~~~
m (→‎call: updated a REXX comment. -- ~~~~)
m (→‎call: adjusted the number of omitted arguments. -- ~~~~)
Line 1,637:
call routineName 50 , , , 70 /*4 args passed, 2nd&3rd omitted.*/
/*omitted args are NOT null. */
call routineName ,,,,,,,,,,,,,,,,800 /*17 args passed, 16 omitted. */
call date /*looks for DATE internally first*/
call 'DATE' /* " " " externally. */</lang>