June 2018 Update

This commit is contained in:
Ingy döt Net 2018-06-22 20:57:24 +00:00
parent ba8067c3b7
commit 22f33d4004
5278 changed files with 84726 additions and 14379 deletions

View file

@ -0,0 +1,2 @@
COND=(rcval,relop,step)
relop is a relational opeator : EQ NE GT LT GE LE (= ¬= < > <= >=)

View file

@ -0,0 +1 @@
if rcval relop step.rc then not execute the current step

View file

@ -0,0 +1 @@
//STEP6 EXEC PGM=MYPROG,COND=(0,NE,STEP3)

View file

@ -0,0 +1 @@
COND=((rcval1,relop1,step1),(rcval2,relop2,step2),...)

View file

@ -0,0 +1 @@
if rcval1 relop1 step1.rc or rcval2 relop2 step2.rc or ... then not execute the current step

View file

@ -0,0 +1 @@
//STEP6 EXEC PGM=MYPROG,COND=((4,LE,STEP1),(8,LE,STEP3))