Get Length in Go

Posted by yhuang
Public (Editable by Users)
Go
Edit
package main

import (
	"fmt"
)

func main() {
	fmt.Println(len("Gopher"))
}