8 lines
125 B
Plaintext
8 lines
125 B
Plaintext
contract C =
|
|
record state = {x : int}
|
|
|
|
function inc(x) = x + 1
|
|
stateful entrypoint f() =
|
|
let s = state
|
|
state.x
|