Initial data commit

This commit is contained in:
Ingy döt Net 2023-07-01 11:58:00 -04:00
parent 72d218235f
commit f23f22d71c
199087 changed files with 3378941 additions and 0 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))