녹 시작하기
설정
MacOS 또는 Linux에서는 터미널에서 다음 명령을 실행합니다(그런 다음 지침을 따릅니다).
더보기: https://www.rust-lang.org/learn/get-started
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
현재 Rust & Cargo 버전을 받으세요:
rustc --version
cargo --version
녹 업데이트:
rustup update
화물 유틸리티:
# create new project
cargo init
# compile & execute
cargo run
# build project
cargo build
# test project
cargo test
# build documentation
cargo doc
# add crate
cargo add <name>
출처: https://www.rust-lang.org/learn/get-started
here에서 Rust VSCode 확장을 설치할 수도 있습니다.
첫 번째 프로젝트
화물 포함
새 폴더를 만든 다음
cargo init
로 Rust 프로젝트를 설정합니다. 이 명령은 Hello World 예제와 함께 Cargo.toml & src/main.rs를 생성합니다. cargo run
로 프로젝트를 실행합니다.mkdir new-project
cd new-project
cargo init
cargo run
화물없이
다음을 사용하여
main.rs
라는 파일을 만듭니다.fn main() {
let hello = "Hello World";
println!("{}", hello)
}
rustc main.rs
로 컴파일한 다음 ./target/debug/main
(Windows의 경우 .\target\debug\hello.exe
)로 실행합니다.
Reference
이 문제에 관하여(녹 시작하기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/alexadam/getting-started-with-rust-2l4c텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)