Skip to content

Latest commit

 

History

History
40 lines (26 loc) · 405 Bytes

File metadata and controls

40 lines (26 loc) · 405 Bytes

hello-rust

  • Hello, rust!

  • .gitignore for rust is updated.

Hello World

  • Create new project
cargo new helloworld
  • Build project (default debug build)
cd helloworld
cargo build
  • Build project using 'Release build'
cargo build --release
  • Run project

    • run default build(debug build)
cargo run
  • run release build
cargo run --release