8 lines
84 B
Standard ML
8 lines
84 B
Standard ML
|
|
structure Tokens =
|
||
|
|
struct
|
||
|
|
datatype t =
|
||
|
|
L_BRACE
|
||
|
|
| R_BRACE
|
||
|
|
| INT of int
|
||
|
|
end
|