ligo/src/test/contracts/letin.mligo
John David Pressman 71989876db Fix a bug, test added:
A never accounted message was not adding anything to the map
2020-01-08 20:58:26 +00:00

8 lines
158 B
Plaintext

type storage = int * int
let main (n: int * storage) =
let x : int * int =
let x : int = 7
in x + n.0, n.1.0 + n.1.1
in ([] : operation list), x