rust의 공식 문서를 참조해 작성함 https://rinthel.github.io/rust-lang-book-ko/ C/C++과 같은 low level programming 언어장점: 다른 low level 언어처럼 빠름, c/c++에서의 메모리 안정성 문제
rust의 공식 문서를 참조해 작성함https://doc.rust-lang.org/book/ch02-00-guessing-game-tutorial.html\~~Cargo new를 통해 새로운 프로젝트를 만들어 /src/main.rs에서 진행첫째로 사용자의 입/
rust의 공식 문서를 참조해 작성함 https://doc.rust-lang.org/book/ch03-01-variables-and-mutability.html변수는 기본적으로 immutable 이지만 그러나 mut 선언을 해주면 바뀔 수 있다.러스트에서 상수
rust의 공식 문서를 참조해 작성함 https://doc.rust-lang.org/book/ch03-01-variables-and-mutability.html Functions 러스트의 함수는 fn 키워드를 사용해 선언할 수 있으며 함수명은 snake case(ho
rust의 공식 문서를 참조해 작성함 https://doc.rust-lang.org/book/ch03-01-variables-and-mutability.html Control Flow