corrected

This commit is contained in:
zainabdnaya 2022-07-07 20:23:57 +01:00 committed by Dav Hojt
parent 042298332e
commit 3a6168c881
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ package main
import "fmt"
func main() {
fmt.Println(Oddlength(["Hi", "Hola", "Ola", "Ciao", "Salut", "Hallo"]))
fmt.Println(Oddlength([]string{"Hi", "Hola", "Ola", "Ciao", "Salut", "Hallo"}))
}
```