Remove some redundant info from tutorial

This commit is contained in:
Brian Anderson 2012-10-06 22:45:48 -07:00
parent fe5526f49c
commit b6443519c8
1 changed files with 1 additions and 13 deletions

View File

@ -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