From b6443519c8b325bd554e8ea7283b02ebe1632e8f Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Sat, 6 Oct 2012 22:45:48 -0700 Subject: [PATCH] Remove some redundant info from tutorial --- doc/tutorial.md | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/doc/tutorial.md b/doc/tutorial.md index 1dac6468fdc..e64de6134d7 100644 --- a/doc/tutorial.md +++ b/doc/tutorial.md @@ -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