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: 5 months 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 5 years ago)
- Default Branch: master
- Last Pushed: 2024-01-28T20:05:24.000Z (over 1 year ago)
- Last Synced: 2024-12-27T17:13:40.025Z (7 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
[](https://github.com/tomdewildt/rust-basics/actions/workflows/ci.yml)
[](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)