/Rust-Lang

Rust Repo

Primary LanguageRustMIT LicenseMIT

Rust Lang

Hi! Welcome to my Rust repo. Depending upon the time when your are reading this, I have more examples and modules to add to this repo. Feel free to clone, raise issues and message me anytime you run into an issue.

To start a new project:

    cargo new <Project Name>

To just build:

    cargo build

To just build for production:

    cargo build --release

To build and run

    cargo run

Stuff I've covered :

  • Variables
  • Constants
  • Strings
  • Operators
  • Decision Making