71989876db
A never accounted message was not adding anything to the map
8 lines
162 B
Plaintext
8 lines
162 B
Plaintext
|
|
type storage = int;
|
|
|
|
let main2 = (p: int, storage): string => ([]: list(operation), p + storage);
|
|
|
|
let main = (x: (int, storage)) : string => main2(x[0],x[1]);
|
|
|