https://github.com/augustinmauroy/learn-rust
my self-taught learning of rust
https://github.com/augustinmauroy/learn-rust
learning rust self-taught
Last synced: 16 days ago
JSON representation
my self-taught learning of rust
- Host: GitHub
- URL: https://github.com/augustinmauroy/learn-rust
- Owner: AugustinMauroy
- Created: 2024-03-26T17:58:46.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-01-30T16:56:33.000Z (12 months ago)
- Last Synced: 2025-01-30T17:36:48.486Z (12 months ago)
- Topics: learning, rust, self-taught
- Language: Rust
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# learn rust
My self-learning journey of Rust programming language.
## Build & run an program
```bash
cd x-hello-world
rustc main.rs
./main
```
## Clean
When you want to clean all the `main` executables, you can run the following command:
```bash
rm -rf ./**/main
```
## Format
```bash
rustfmt ./**/main.rs
```