17 lines
228 B
Plaintext
17 lines
228 B
Plaintext
/**
|
|
* Hello world contract in sophia
|
|
*
|
|
* Copyright (C) 2025, QPQ AG
|
|
*/
|
|
|
|
@compiler == 9.0.0
|
|
|
|
contract Hello =
|
|
type state = unit
|
|
|
|
entrypoint init(): state =
|
|
()
|
|
|
|
entrypoint hello(): string =
|
|
"hello"
|