Write a function that returns the length of a string.
len
func Strlen(str string) int { }
And its output :
student@ubuntu:~/piscine/test$ go build student@ubuntu:~/piscine/test$ ./test 4 student@ubuntu:~/piscine/test$