reword tuples introduction (#42)

This commit is contained in:
Onè
2024-05-23 08:29:55 -04:00
committed by GitHub
parent aecd6e6180
commit bf1cdfdb5c

View File

@@ -52,7 +52,8 @@ let y = point.1;
### Tuples
It's weird say that something is tuple-like when we haven't seen tuples yet!
Tuples are Rust primitive types. They group together a fixed number of values with (potentially different) types:
Tuples are another example of a primitive Rust type.
They group together a fixed number of values with (potentially different) types:
```rust
// Two values, same type