sophia/test/contracts/counter.aes
2018-12-22 01:23:40 +01:00

10 lines
191 B
Plaintext

contract Counter =
record state = { value : int }
function init(val) = { value = val }
function get() = state.value
function tick() = put(state{ value = state.value + 1 })