https://github.com/pythonhubdev/rust-learning
https://github.com/pythonhubdev/rust-learning
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/pythonhubdev/rust-learning
- Owner: pythonhubdev
- Created: 2024-12-15T08:53:27.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-23T11:53:02.000Z (about 1 year ago)
- Last Synced: 2025-04-05T07:33:27.695Z (9 months ago)
- Language: Rust
- Size: 1.4 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Rust Learning
This repository contains the code I wrote while learning Rust. I am using the official Rust documentation for learning
Rust. I will be adding more code as I learn more about Rust. Any other sources I use will be mentioned in the README.md
## Resources
- [The Rust Programming Language](https://doc.rust-lang.org/book/)
## Running the code
To run the code, you need to have Rust installed on your system. You can install Rust by following the instructions
on the [official Rust website](https://www.rust-lang.org/tools/install).
To run the code, navigate to the directory containing the code and run the following command:
```bash
rustc .rs
```
This will compile the code and create an executable file. To run the executable, run the following command:
```bash
./
```