Skip to content

Instantly share code, notes, and snippets.

@bam6o0
Created July 29, 2017 07:51
Show Gist options
  • Save bam6o0/ea327a08a46f61e2a0ba5ec458a9d963 to your computer and use it in GitHub Desktop.
Save bam6o0/ea327a08a46f61e2a0ba5ec458a9d963 to your computer and use it in GitHub Desktop.
package main
import "fmt"
func main() {
var en string = "golang"
var ja string = "Go言語"
fmt.Println(en, "len", len(en))
fmt.Println(ja, "len", len(ja))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment