Rust: Difference between revisions

From wikinotes
Line 24: Line 24:
|-
|-
| [[rust packaging]]
| [[rust packaging]]
|-
| [[rust conventions]]
|-
|-
|}
|}

Revision as of 21:17, 6 February 2023

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
rust conventions

Libraries

Syntax

rust comments
rust print
rust variables
rust datatypes
rust modules
rust input/output
rust functions
rust conditionals
rust loops
rust errors
rust matching