Returns the number of characters in the string.
package main import ( "fmt" ) func main() { fmt.Println(len("Gopher")) }