Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/tomdewildt/rust-basics
- Owner: tomdewildt
- License: mit
- Created: 2020-03-21T00:14:39.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-01-28T20:05:24.000Z (9 months ago)
- Last Synced: 2024-01-28T21:23:43.919Z (9 months ago)
- Topics: actions, rls, rust, syntax, vscode
- Language: Rust
- Size: 27.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
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)