[Rust Tutorial] 4 - Data Type
IntroRust에서 제공하는 Data Type 여러 가지가 있지만 기본적으로 제공하는 Type은 크게 Primary Type과 Advenced Type, Compound Type, Collection Type으로 나눌 수 있습니다. Primary Type : 정수, 소수, 문자(char), 참/거짓, Advenced Type : 문자열(&str, String)Component Type : Tuple, Array, Slice, ...Collection Type : Vector, Map, Set, ...Custom Type : Enum, Struct, ... 예제를 통해 어떻게 사용할 수 있는지 확인해 보겠습니다. Code ExampleRust 1.79.0 (released 2024-06-13) fn ..