blob: 765d46c24b81417c2fe7e685f01ff947a4f147b2 [file] [log] [blame]
package good
func RuneLen(s string) int {
i := 0
for range s {
i += 1
}
return i
}