DEF TYPE
The DEF TYPE statement declares a FLD and a record based on the specified pack format. For example,
00010 DEF TYPE telephone$ = "CHAR(30)" : :will define the following two variables:
D .telephone$ (1, "CHAR(30)") D _telephone 30this is similar to the effect of defining a record
00010 DEFRECORD telephone : FLD telephone$ = "CHAR(30)" : END RECORD :
See also: