13 lines
176 B
Go
13 lines
176 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
name := "Worlds"
|
|
fmt.Println(getGreeting(name))
|
|
}
|
|
|
|
func getGreeting(name string) string {
|
|
return fmt.Sprintf("Hello, %s!", name)
|
|
}
|