babygo
babygo copied to clipboard
memcopy for string conversion (from/to)
Consider these cases
str := string(slice)
slice[0] = 'X'
str := "hello"
slice := []byte(str)
slice[0] = 'X'