Skip to content

Commit

Permalink
tutorial: Remove some trivia about operators
Browse files Browse the repository at this point in the history
  • Loading branch information
brson committed Dec 21, 2012
1 parent 2f615dc commit cbddd5e
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions doc/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -371,11 +371,6 @@ let y: uint = x as uint;
assert y == 4u;
~~~~
The main difference with C is that `++` and `--` are missing, and that
the logical bitwise operators have higher precedence—in C, `x & 2 > 0`
means `x & (2 > 0)`, but in Rust, it means `(x & 2) > 0`, which is
more likely to be what a novice expects.
## Syntax extensions
*Syntax extensions* are special forms that are not built into the language,
Expand Down

0 comments on commit cbddd5e

Please sign in to comment.