10 lines
196 B
Standard ML
10 lines
196 B
Standard ML
|
|
structure FileMessage =
|
||
|
|
struct
|
||
|
|
datatype t =
|
||
|
|
SAVE_SQUARES of int vector vector
|
||
|
|
| LOAD_SQUARES
|
||
|
|
| EXPORT_SQUARES of int vector vector
|
||
|
|
| LOAD_FILES of string
|
||
|
|
| SELECT_PATH of string
|
||
|
|
end
|