Files
gsc/test/ct/hello.aes
T
2026-06-05 13:36:01 -07:00

11 lines
192 B
Plaintext

// Hello World Contract
// Copyright (c) 2025 QPQ AG
contract Hello =
type state = unit
entrypoint init(): state =
()
entrypoint hello(): string =
"hello, world"