Contact: aviboots(AT)netvision.net.il
41,593 questions
54,235 answers
573 users
package main import ( "fmt" ) func main() { slice := []byte("go java") fmt.Println(slice) slice = append(slice, "c++" ...) fmt.Println(slice) } /* run: [103 111 32 106 97 118 97] [103 111 32 106 97 118 97 99 43 43] */