Here is my code and terminal window. What should I do to make it work well and return function description?
// Copyright DOCUMENTATION FOR ME. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package testDoc
// sayHello return "Hello world string"
func sayHello() string{
return "Hello world!"
}
Use the -u flag to show unexported symbols: go doc -u ./test