공부/rust (3) 썸네일형 리스트형 [rust] 크레이트를 이용해 필요한 기능 추가하기 크레이트: 소스 파일의 집합 Cargo.toml 파일을 수정해서 rand 크레이트를 의존 패키지로 등록해 주어야 한다. #Cargo.toml [dependencies] rand = "0.8.3" 크레이트와 버전을 지정 [rust] 러스트의 기본 문법(변수) 충격.. rust는 코드블럭이 없군요.. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 use std::io; use std::cmp::Ordering; use rand::Rng; fn main() { let secret_number = rand::thread_rng().gen_range(1,101); println!("let's this about the correct number!"); println!("input number that you think correct!"); loop { let mut guess = String::new(); io::stdin().read_line(&mut gu.. [rust] 디버깅 세팅 https://onna-life.tistory.com/4 이전 1 다음