This commit is contained in:
Peter Harpending
2026-06-01 21:01:20 -07:00
parent fa074ed92e
commit eff77fff6b
36 changed files with 991 additions and 0 deletions
@@ -0,0 +1,10 @@
// Hello World Contract
// Copyright (c) 2025 QPQ AG
contract Hello =
type state = unit
entrypoint init(): state =
()
entrypoint hello(): string =
"hello, world"