[Go/Golang] Go언어 배열 다루는 또 다른 방법 slice 알아보기!!
이번엔 go에서 중요하다고 하는 slice에 대해서 알아보자! https://gobyexample.com/slices Go by Example: Slices Slices are a key data type in Go, giving a more powerful interface to sequences than arrays. package main import "fmt" func main() { Unlike arrays, slices are typed only by the elements they contain (not the number of elements). To create an empty slice wi gobyexample.com 위의 링크에서 말하길 array보다 sequence를 다루기에 훨..
2022.06.12