blob: fde3390cd9cefceeaccc3d7bda6ba8fec84d747b [file] [log] [blame]
lexer grammar VecMath_Lexer;
PRINT : 'print';
ID : 'a'..'z'+ ;
INT : '0'..'9'+ ;
WS : (' '|'\r'|'\n')+ {Skip();} ;
PLUS : '+';
MINUS : '-';
MULT : '*';
EQUAL : '=';
DOT : '.';
OPEN_BRACE : '(';
OPEN_SQUARE : '[';
CLOSE_BRACE : ')';
CLOSE_SQUARE : ']';
COMMA : ',';