6 lines
129 B
Plaintext
6 lines
129 B
Plaintext
type storage = int;
|
|
|
|
let main =
|
|
(((p, s): (int, storage))): (list(operation), storage) =>
|
|
([] : list(operation), p + s);
|