Files
Vanillae/sidekick/scratch/examples_old/contract-examples/floyd.aes
T

12 lines
176 B
Plaintext

contract Floyd =
type state = unit
stateful entrypoint init() =
()
entrypoint sayHello() : string =
"hello"
entrypoint x() : int =
0