9 lines
90 B
Standard ML
9 lines
90 B
Standard ML
|
|
structure Tokens =
|
||
|
|
struct
|
||
|
|
datatype t =
|
||
|
|
L_BRACE
|
||
|
|
| R_BRACE
|
||
|
|
| INT of int
|
||
|
|
| X
|
||
|
|
end
|