Pure package detail
greet
gno.land/p/moul/greet/v1
Indexed deployment identity with independently loaded latest RPC source. Functions and Render are realm-only RPC capabilities.
Indexed deployment
Identity
- Package path
- gno.land/p/moul/greet/v1
- Block
- 23341
- Deployed (UTC)
- Transaction
- eplUcrLsg6o+6xZavvwZBQ+Mn3SVhPS3dH/FqZJZsTU=
Latest RPC state
Source
// Package greet is a tiny pure package used as a canary: it proves that
// versioned cross-package resolution (gno.land/p/moul/greet/v1) works in the
// workspace and in CI. Replace or remove it once real packages land.
package greet
import "strings"
// Greet returns a friendly greeting for name (defaults to "world").
func Greet(name string) string {
name = strings.TrimSpace(name)
if name == "" {
name = "world"
}
return "Hello, " + name + "!"
}
The verified vm/qfuncs operation accepts realm paths only.
Pure packages expose source files but do not have Realm Render.