It is so weird that you can do these kinds of things in #Golang

    // append a slice to another
	e := []int{10, 20, 30}
	e = append(e, append(e, append(e, e...)...)...)
	fmt.Println("append e", e)

⤋ Read More