tutorial: Remove some trivia

This commit is contained in:
Brian Anderson 2012-07-06 17:07:12 -07:00
parent 6b8ebc12db
commit 57698fec6c

View file

@ -83,7 +83,7 @@ fn main() {
// Open a channel to receive game results // Open a channel to receive game results
do listen |result_from_game| { do listen |result_from_game| {
let times = 10; let = 10;
let player1 = "graydon"; let player1 = "graydon";
let player2 = "patrick"; let player2 = "patrick";
@ -348,9 +348,6 @@ Rust identifiers must start with an alphabetic character or an
underscore, and after that may contain any alphanumeric character, and underscore, and after that may contain any alphanumeric character, and
more underscores. more underscores.
***Note:*** The parser doesn't currently recognize non-ascii alphabetic
characters. This is a bug that will eventually be fixed.
The double-colon (`::`) is used as a module separator, so The double-colon (`::`) is used as a module separator, so
`io::println` means 'the thing named `println` in the module `io::println` means 'the thing named `println` in the module
named `io`'. named `io`'.