1 2 3 4 5 6 7 8
package papo import "fmt" func Hello(name string) string { message := fmt.Sprintf("Hi, %v. Welcome!", name) return message }