https://github.com/fogarecious/rust_tutorial
Tutorial of Rust
https://github.com/fogarecious/rust_tutorial
rust rust-lang tutorial
Last synced: 2 months ago
JSON representation
Tutorial of Rust
- Host: GitHub
- URL: https://github.com/fogarecious/rust_tutorial
- Owner: fogarecious
- Created: 2024-07-27T08:04:23.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-09T08:49:32.000Z (over 1 year ago)
- Last Synced: 2025-06-16T20:44:57.483Z (10 months ago)
- Topics: rust, rust-lang, tutorial
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple Rust Tutorial
[Rust](https://www.rust-lang.org/) is a programming language that provides extra reliability of software, memory safety especially.
This tutorial serves as a quick start for [Rust](https://www.rust-lang.org/).
We try to keep each part of the tutorial as simple as possible.
## Quick Start
* [Installing Rust](./tutorial/installing_rust.md)
* [The First Project](./tutorial/the_first_project.md)
* [Explanation Of The First Program](./tutorial/explanation_of_the_first_program.md)
## Basic
* [Adding Comments](./tutorial/adding_comments.md)
* Printing On Screen
* [Printing Strings](./tutorial/printing_strings.md)
* [Printing Special Strings](./tutorial/printing_special_strings.md)
* [Printing Numbers](./tutorial/printing_numbers.md)
* Variables
* [Declaring Variables](./tutorial/declaring_variables.md)
* [Specifying Types Of Variables](./tutorial/specifying_types_of_variables.md)
* [Updating Variables](./tutorial/updating_variables.md)
* [Shadowing](./tutorial/shadowing.md)
* Variable Types
* Integers
* Floating-Point Numbers
* Characters
* Booleans
* Others
* Operations
* Arithmetic Operations
* Logical Operations
* Control Flow
* Functions
## See Also
* [Rust](https://www.rust-lang.org/) - the Rust programming language.
* [The Book](https://doc.rust-lang.org/book/) - an official introductory book about Rust.
## Contributions
Pull requests for typos, incorrect information, or other ideas are welcome!
## License
All code in the tutorial is provided under the MIT License.