11 lines
192 B
Plaintext
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"
|