tutorial: Minor tweaks to intro

This commit is contained in:
Brian Anderson 2012-07-06 12:20:03 -07:00
parent 08a99d6ae1
commit 8c64a98d65
1 changed files with 7 additions and 7 deletions

View File

@ -14,13 +14,13 @@ the whole language, though not with the depth and precision of the
## Language Overview
Rust is a systems programming language with a focus on type safety,
memory safety, and performance. It is intended for writing large, high
performance applications while preventing several classes of errors
commonly found in languages like C++. Rust has a sophisticated memory
model that enables many of the efficient data structures used in C
while disallowing invalid memory access that would otherwise cause
segmentation faults. Like other systems languages it is statically
typed and compiled ahead of time.
memory safety, concurrency and performance. It is intended for writing
large, high performance applications while preventing several classes
of errors commonly found in languages like C++. Rust has a
sophisticated memory model that enables many of the efficient data
structures used in C++ while disallowing invalid memory access that
would otherwise cause segmentation faults. Like other systems
languages it is statically typed and compiled ahead of time.
As a multi-paradigm language it has strong support for writing code in
procedural, functional and object-oriented styles. Some of it's nice