* move stuff in here * reorganizing because zx needs to feel special * add base58/base64 explainer draft
12 lines
176 B
Plaintext
12 lines
176 B
Plaintext
contract Floyd =
|
|
type state = unit
|
|
|
|
stateful entrypoint init() =
|
|
()
|
|
|
|
entrypoint sayHello() : string =
|
|
"hello"
|
|
|
|
entrypoint x() : int =
|
|
0
|