Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/deimoshall/basics-of-rust
My implementation of The Rust Programming Language book
https://github.com/deimoshall/basics-of-rust
Last synced: 30 days ago
JSON representation
My implementation of The Rust Programming Language book
- Host: GitHub
- URL: https://github.com/deimoshall/basics-of-rust
- Owner: DeimosHall
- Created: 2022-08-02T23:16:06.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-05T14:54:44.000Z (about 1 year ago)
- Last Synced: 2023-12-05T16:09:53.900Z (about 1 year ago)
- Language: Rust
- Size: 11.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# My implementation of The Rust Programming Language book
## The hello world looks like this~~~rust
fn main() {
println!("Hello world :D");
}
~~~You can find the book [here!](https://doc.rust-lang.org/book/title-page.html)