Search Apps Documentation Source Content File Folder Download Copy Actions Download

hello.gno

0.14 Kb · 7 lines
1package hello
2
3var message = "Hello, World!"
4
5func Render(_ string) string {
6	return "# " + message + "\n\nWelcome to my first Gno realm."
7}