Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/embeddedalpha/rust-lang

Rust Repo
https://github.com/embeddedalpha/rust-lang

Last synced: 2 days ago
JSON representation

Rust Repo

Awesome Lists containing this project

README

        

# 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
```

### 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