Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 390 Bytes

README.md

File metadata and controls

19 lines (16 loc) · 390 Bytes

rust-example

Example repo created while learning the rust toolchain

Initializing Project

To initialize a project, we use cargo from the rust toolchain.

$ cargo new rust_example
    Created binary (application) `rust_example` package
$ tree .
.
├── LICENSE
├── README.md
└── rust_example
    ├── Cargo.toml
    └── src
        └── main.rs