Source Code
;; Simple Hello to the World
;; Declare a constant that represents the greeting message
(define-constant hello-message "Hello, World!")
;; Define a public function that returns the greeting message
(define-public (say-hello)
(ok hello-message)
)
Functions (1)
| Function | Access | Args |
|---|---|---|
| say-hello | public |