-
Rust연습] Some(String) Some(_) 연습코딩Coding/Rust연습 2022. 4. 11. 17:15728x90
fn main() { let s = Some(String::from("Hello")); if let Some(_) = s { println!("find string!"); } println!("{s:?}"); }
결과
find string! Some("Hello")
반응형'코딩Coding > Rust연습' 카테고리의 다른 글
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연습] 섀도 변수 y를 생성하는 match 표현식 (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 Rust연습-curves_rs::canvas,pixel by (0) 2022.02.03