IT

go 변수 선언

thesse 2021. 5. 13. 09:40
300x250
반응형

const : 상수 (final)

var : 변수

 

일반적인 선언

변수/상수 변수이름 타입 = 값

 - 타입 선언안하면 알아서 찾아줌

var name string = "song"
var account = 13

 

 

func 안에서의 축약된 선언 : 변수이름 := 값

 - func 밖에서는 못씀

func main(){
	name := "song"
}

acocunt := 13 	//안됨
300x250
반응형

'IT' 카테고리의 다른 글

go 포인터  (0) 2021.05.13
go 반복문, 조건문  (0) 2021.05.13
go 함수 선언  (0) 2021.05.13
node.js 설치 (윈도우)  (0) 2021.05.12
firebase 에러 : Could not reach Cloud Firestore backend. permission denied  (0) 2021.05.04