Data Definition Language (DDL) Reference Manual

DDL Compiler Commands
Data Definition Language (DDL) Reference Manual529431-004
9-31
COMMENTS
Example 9-15. COMMENTS Command
DDL Input
?DICT
?COBOL
?TAL
?TACL
?COMMENTS
?CLISTOUT
?NOTIMESTAMP
*Token type for enumerated tokens
TOKEN-TYPE zspi-typ-enum VALUE IS zspi-tdt-enum
DEF IS zspi-ddl-enum.
DDL Output (C Code)
/* Token type for enumerated tokens */
#pragma section zspi_typ_enum
#define ZSPI_TYP_ENUM 2818u
DDL Output (COBOL Code)
*Token type for enumerated tokens
01 ZSPI-TYP-ENUM NATIVE-2 VALUE IS 2818.
DDL Output (Pascal Code—D-Series Systems Only)
{ Token type for enumerated tokens }
?Section ZSPI_TYP_ENUM
CONST ZSPI_TYP_ENUM = 2818;
DDL Output (TACL Code)
?Section ZSPI-TYP-ENUM Struct
==Token type for enumerated tokens
BEGIN
UINT ZSPI^TYP^ENUM IS 2818;
END;
DDL Output (pTAL or TAL Code)
!Token type for enumerated tokens
Literal ZSPI^TYP^ENUM = 11 '<' 8 + 2;