
/* chad c d clark   < clarkch @ cpsc . ucalgary . ca >
 *
 * cpsc 411	lec ??
 * winter 2002	lab 02
 *
 * assignment #1 - a first stab.
 *
 * file: as1tokens.h
 * purpose: token defines for lexing and parsing.
 * 
 *
 */


#define T_IF	240
#define T_THEN	241
#define T_ELSE	242
#define T_WHILE	230
#define T_DO	231
#define T_UNTIL	232
#define T_READ	220
#define T_PRINT	221
#define T_BEGIN	210
#define T_END	211
#define T_ID	200
#define T_NUM	201
#define T_ADD	190
#define T_SUB	191
#define T_MUL	192
#define T_DIV	193
#define T_LPAR	180
#define T_RPAR	181
#define T_SEMICOLON	182
#define T_ASSIGN	183
#define T_ERROR	255



