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

https://github.com/piotrjustyna/the-rust-programming-language

"The Rust Programming Language" exercises.
https://github.com/piotrjustyna/the-rust-programming-language

Last synced: 8 months ago
JSON representation

"The Rust Programming Language" exercises.

Awesome Lists containing this project

README

          

- [the-rust-programming-language](#the-rust-programming-language)
- [Notes](#notes)

# the-rust-programming-language

"The Rust Programming Language" exercises.

## Notes

Useful save and run plugin for visual studio code:

```json
"saveAndRun": {
"commands": [
{
"match": "\\.rs$",
"cmd": "echo 'Formatting ${fileBasename}... ' && rustfmt ${fileBasename}",
"useShortcut": false,
"silent": true
}
]
}
```