Help solve my friend's poetic Golang challenge!

See the coding challenge below, have fun my fellow Golang enthusiasts!

Unless I misread the challenge. This has to be the hardest challenge I’ve ever seen xD.

package main

import (
	"net/http"

	"github.com/drhodes/golorem"
	"github.com/labstack/echo"
)

func main() {
	e := echo.New()
	e.GET("/", func(c echo.Context) error {
		return c.String(http.StatusOK, lorem.Paragraph(3, 7))
	})
	e.Logger.Fatal(e.Start(":9000"))
}

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.