Go 언어 데이터 타입 Boolean 타입 (부울형, 불형) true 또는 false 값을 갖는다. Go 언어에서는 0 이나 nil 을 false로 변환하지 않는다. 즉, 조건문 등에 bool 타입 값을 꼭 명시해주어야 한다. Numeric 타입 (숫자형) Type 설명 범위 크기 uint8 the set of all unsigned 8-bit integers (0 to 255) 1 uint16 the set of all unsigned 16-bit integers (0 to 65535) 2 uint32 the set of all unsigned 32-bit integers (0 to 4294967295) 4 uint64 the set of all unsigned 64-bit integers (0 to ..