1 Matching Annotations
- Jul 2022
-
-
func Hello(name string) string { // Return a greeting that embeds the name in a message. message := fmt.Sprintf("Hi, %v. Welcome!", name) return message }
func Hello(name string) string {} Hello - Function name string - Parameter type string - Return type
-