mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-16 04:55:22 +03:00
Remove some redundant info from tutorial
This commit is contained in:
+1
-13
@@ -686,19 +686,7 @@ For more involved iteration, such as going over the elements of a
|
||||
collection, Rust uses higher-order functions. We'll come back to those
|
||||
in a moment.
|
||||
|
||||
# Basic datatypes
|
||||
|
||||
The core datatypes of Rust are structs, enums (tagged unions, algebraic data
|
||||
types), and tuples. They are immutable by default.
|
||||
|
||||
~~~~
|
||||
struct Point { x: float, y: float }
|
||||
|
||||
enum Shape {
|
||||
Circle(Point, float),
|
||||
Rectangle(Point, Point)
|
||||
}
|
||||
~~~~
|
||||
# Data structures
|
||||
|
||||
## Structs
|
||||
|
||||
|
||||
Reference in New Issue
Block a user