Fork me on GitHub
#clojure-doc
<
2023-03-08
>
dgb2309:03:30

Rust has a pretty good culture around documentation, guides and tutorials and cookbooks. Since you're also learning new PLs regularly you might be aware of these, but I wanted to link them here for reference and inspiration: • official tutorial: https://doc.rust-lang.org/stable/book/ • official guides, by example / use-cases, std lib specific: https://doc.rust-lang.org/stable/rust-by-example/ • a cookbook that includes common programming tasks with third party libs: https://rust-lang-nursery.github.io/rust-cookbook/ • async book: https://rust-lang.github.io/async-book/ • book around "unsafe" code, subtle internals: https://doc.rust-lang.org/nomicon/ • an esoteric one that is about how to implement all sorts of lists in rust (which is specifically tricky in the language): https://rust-unofficial.github.io/too-many-lists/

2