golang get string length

package main

import "fmt"

func main() {
    // Declare a string variable
    myString := "Hello, Go!"

    // Use the len() function to get the length of the string
    stringLength := len(myString)

    // Print the length of the string
    fmt.Printf("Length of the string: %d\n", stringLength)
}