Files
gsc/cli/test-data/gt_syntax/hello.aes
T
2026-06-02 01:48:05 -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"