Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/tomdewildt/rust-basics

Syntax basics for the rust programming language
https://github.com/tomdewildt/rust-basics

actions rls rust syntax vscode

Last synced: about 7 hours ago
JSON representation

Syntax basics for the rust programming language

Awesome Lists containing this project

README

        

# Rust Basics
[![Build](https://img.shields.io/github/actions/workflow/status/tomdewildt/rust-basics/ci.yml?branch=master)](https://github.com/tomdewildt/rust-basics/actions/workflows/ci.yml)
[![License](https://img.shields.io/github/license/tomdewildt/rust-basics)](https://github.com/tomdewildt/rust-basics/blob/master/LICENSE)

Syntax basics for the rust programming language.

# How To Install

1. Make sure that curl is installed. You can install curl by running the following command: ```sudo apt install curl```.
2. Execute the rust install script with the following command: ```curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh```.

If your using vs code you probably want to install the following extensions to speed up development:

* [Rust (rls)](https://marketplace.visualstudio.com/items?itemName=rust-lang.rust)

# How To Run

### Command

1. Run ```cargo run``` to execute the program.

# References

[Rust Docs](https://www.rust-lang.org/learn)

[Rust Tutorial YouTube](https://www.youtube.com/watch?v=zF34dRivLOw)