3 lines
98 B
Standard ML
3 lines
98 B
Standard ML
structure Tokens =
|
|
struct datatype t = L_BRACE | R_BRACE | L_BRACKET | R_BRACKET | INT of int end
|