Rust Compounds
Rust By Example
Rust by Example (RBE) is a collection of runnable examples that illustrate various Rust concepts and standard libraries.
https://doc.rust-lang.org/rust-by-example/primitives/tuples.html
Arrays and Slices
An array is a collection of objects of the same type T, stored in contiguous memory. Arrays are created using brackets[], and their length, which is known at compile time, is part of their type signature[T; length]. Slices are similar to arrays, but their length is not known at compile time.
https://doc.rust-lang.org/rust-by-example/primitives/array.html

Seonglae Cho