-
Rust연습] 섀도 변수 y를 생성하는 match 표현식코딩Coding/Rust연습 2022. 4. 11. 17:25728x90
fn main() { let x = Some(5); let y = 10; match x { Some(50) => println!("50"), Some(y) => println!("일치, y = {:?}", y), _ => println!("일치하지 않음, x = {:?}", x), } println!("결과: x = {:?}, y = {:?}", x, y); }
결과
일치, y = 5 결과: x = Some(5), y = 10
반응형'코딩Coding > Rust연습' 카테고리의 다른 글
rust연습]vec벡터 끼리 합치기 + vec + vec append (0) 2022.04.18 rust연습]u8_sting_stack저장하기bytes() / std::str (0) 2022.04.18 rust연습]10진수 숫자 16진수로 알아보는 방법& 16진수를 10진수 숫자로 알아보는 방법 (0) 2022.04.17 rust연습] pi(𝜋)파이 1억자리까지 계산 하기 (0) 2022.04.16 Rust연습] Some(String) Some(_) 연습 (0) 2022.04.11 rust 연습] iter(), zip() 연습 (0) 2022.04.11 Rust연습] 16진수출력❤️HexRGB(Color) 연습출처 : Rust 101 - Lecture 1 (0) 2022.04.04 Rust연습]자연수 유니코드ℕ Unicode번호(16진수)알아보기 (0) 2022.03.23