2019-02-08 13:10:55 +03:00
|
|
|
// Copyright © 2018 Inanc Gumus
|
|
|
|
// Learn Go Programming Course
|
|
|
|
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
|
|
|
|
//
|
2019-10-30 19:34:44 +03:00
|
|
|
// For more tutorials : https://learngoprogramming.com
|
|
|
|
// In-person training : https://www.linkedin.com/in/inancgumus/
|
|
|
|
// Follow me on twitter: https://twitter.com/inancgumus
|
2019-02-08 13:10:55 +03:00
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2019-08-18 15:32:48 +03:00
|
|
|
nums := []int{56, 89, 15, 25, 30, 50}
|
2019-02-08 13:10:55 +03:00
|
|
|
|
|
|
|
// ----------------------------------------
|
|
|
|
// breaks the connection:
|
|
|
|
// mine and nums now have different backing arrays
|
|
|
|
|
|
|
|
// verbose solution:
|
|
|
|
// var mine []int
|
|
|
|
// mine = append(mine, nums[:3]...)
|
|
|
|
|
|
|
|
// better solution (almost the same thing):
|
|
|
|
mine := append([]int(nil), nums[:3]...)
|
|
|
|
// ----------------------------------------
|
|
|
|
|
|
|
|
mine[0], mine[1], mine[2] = -50, -100, -150
|
|
|
|
fmt.Println("Mine :", mine)
|
|
|
|
fmt.Println("Original nums:", nums[:3])
|
|
|
|
}
|