Files
gsc/cli/ct/hello.aes
T
2026-06-02 01:58:40 -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"