ACUCOBOL-GT COBOL allows an incomplete OUTPUT phrase of the form OUTPUT, JUST, or OUTPUT JUST in an ACCEPT or DISPLAY statement. In this COBOL system, any incomplete phrases are ignored.
01 accept data-01 output just. *> ignored 01 accept data-01 just. *> ignored 01 accept data-01 output just right. *> correct 01 accept data-01 output just centered. *> correct