Flow-control structures: Difference between revisions

Content added Content deleted
m (→‎select: change an "op" to be unique. -- ~~~.)
m (→‎call: corrected a REXX comment to match the REXX call statement. - ~~~~)
Line 1,635: Line 1,635:
call routineName 50 ,60 /*(same as above) */
call routineName 50 ,60 /*(same as above) */
call routineName 10*5 , 8**4 - 4 /*(same as above) */
call routineName 10*5 , 8**4 - 4 /*(same as above) */
call routineName 50 , , , 70 /*3 args passed, 2nd was omitted.*/
call routineName 50 , , , 70 /*3 args passed, 2nd&3rd omitted.*/
/*omitted args are NOT null. */
/*omitted args are NOT null. */
call routineName ,,,,,,,,,,,,,,,800 /*17 args passed, 16 omitted. */
call routineName ,,,,,,,,,,,,,,,800 /*17 args passed, 16 omitted. */