This commit is contained in:
vinchent 2024-09-10 11:09:31 +02:00
parent aa8ec804e9
commit f13632e425
2 changed files with 5 additions and 5 deletions

View File

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

View File

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