녹 시작하기

2564 단어 macoslinuxrustcargo

설정



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)로 실행합니다.

좋은 웹페이지 즐겨찾기