An open API service indexing awesome lists of open source software.

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

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
```