[Go/Golang] Go 언어 변수 선언 특이한 점
hello world 다음인가 다다음에 나오는 변수 선언 방법을 보고 이런저런 테스트를 해봤다. https://gobyexample.com/variables Go by Example: Variables In Go, variables are explicitly declared and used by the compiler to e.g. check type-correctness of function calls. package main import "fmt" func main() { var declares 1 or more variables. var a = "initial" fmt.Println(a) You can declare multiple variable gobyexample.com 아래는 제공된 예시 코..
2022.06.06