Make the name dynamic

This commit is contained in:
Oliver Davies 2022-01-26 13:29:00 +00:00
parent cdfe936ef4
commit 11aa1735e1
2 changed files with 5 additions and 5 deletions

View file

@ -2,10 +2,10 @@ package main
import "fmt" import "fmt"
func Hello() string { func Hello(name string) string {
return "Hello, world" return "Hello, " + name
} }
func main() { func main() {
fmt.Println(Hello()) fmt.Println(Hello("Oliver"))
} }

View file

@ -3,8 +3,8 @@ package main
import "testing" import "testing"
func TestHello(t *testing.T) { func TestHello(t *testing.T) {
got := Hello() got := Hello("Oliver")
want := "Hello, world" want := "Hello, Oliver"
if got != want { if got != want {
t.Errorf("got %q want %q", got, want) t.Errorf("got %q want %q", got, want)