반응형
목차
- Installation
- Cargo new hello_cargo
- 참고
Installation
mac os 기준:
$ curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf | sh
를 설치하면 됩니다. 다른 OS는 Rust 공식 홈페이지를 참고해주세요.
Cargo new hello_cargo
먼저 프로젝트를 생성해야겠죠?
cargo new hello_cargo
cd hello_cargo
를 하시면 됩니다. 그럼 src 폴더에 main.rs 파일이 보이실거예요.
fn main() {
println!("Hello, world!");
}
이제 이걸 실행 시켜볼까요?
cargo run
참고
반응형
'Rust' 카테고리의 다른 글
Variables and Mutability (0) | 2022.01.31 |
---|