From d235d4a389ba5e3b94fc55942dfe78e298b77e91 Mon Sep 17 00:00:00 2001 From: zainab Dnaya Date: Tue, 9 Aug 2022 08:52:16 +0100 Subject: [PATCH] Update README.md --- subjects/printfirsthalf/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/subjects/printfirsthalf/README.md b/subjects/printfirsthalf/README.md index 8bd25584..abf89e3e 100644 --- a/subjects/printfirsthalf/README.md +++ b/subjects/printfirsthalf/README.md @@ -24,9 +24,9 @@ Here is a possible program to test your function: package main func main() { - fmt.Print(FirstHalf("This is the 1st halfThis is the 2nd half")) - fmt.Print(FirstHalf("")) - fmt.Print(FirstHalf("Hello World")) + fmt.Print(PrintFirstHalf("This is the 1st halfThis is the 2nd half")) + fmt.Print(PrintFirstHalf("")) + fmt.Print(PrintFirstHalf("Hello World")) } ```