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