After reading Rust book chapter 1

rust

시작!


유용한 툴


Hello World!

// main.rs
fn main() {
  println!("Hello, world!");
}
$ rustc main.rs
$ ./main


Cargo: rust 빌드시스템이자 패키지 매니저 dependency

$ cargo new hello_cargo
$ cd hello_cargo
$ cargo build
$ cargo run
$ cargo check
$ cargo build --release