Rust: Difference between revisions

From wikinotes
No edit summary
Line 14: Line 14:
|}
|}
</blockquote><!-- Documentation -->
</blockquote><!-- Documentation -->
= Tutorials =
<blockquote>
{| class="wikitable"
|-
| rust by example || https://doc.rust-lang.org/rust-by-example/index.html
|-
| what you can't do in rust + workarounds || https://blog.logrocket.com/what-you-cant-do-in-rust-and-what-to-do-instead/
|-
|}
</blockquote><!-- Tutorials -->


= Intro/Reference =
= Intro/Reference =

Revision as of 13:23, 9 October 2022

A statically typed programming language that builds native executables.
The rust docs are the best I've ever seen, these notes are mostly collections of links.

Documentation

rust reference https://doc.rust-lang.org/reference/introduction.html
rust by example (intro) https://doc.rust-lang.org/stable/rust-by-example/
all official docs https://www.rust-lang.org/learn

Intro/Reference

rust tutorials
rust toolchains
rust packaging

Libraries

Basics

rust comments
rust variables
rust datatypes
rust input/output
rust modules