Data Factoring
PL/I supports several flavors of attribute factoring in the DECLARE statement. Factoring enables grouping of variable names and attributes.
For example:
declare (A,B,C,D) binary fixed (31); declare (E decimal(6,5), F character(10)) static; declare 1 A, 2(B,C,D) (3,2) binary fixed (15); declare ((A,B) fixed(10),C float(5)) external;
Copyright © 2021. TIBCO Software Inc. All Rights Reserved.