Update README.md

This commit is contained in:
Jonathan Turner 2016-03-02 15:08:35 -05:00
parent ab441dfb0c
commit 2d0e7329a5

View File

@ -21,7 +21,7 @@ if true {
``` ```
```Rust ```Rust
var x = 10 var x = 10;
while x > 0 { while x > 0 {
print(x); print(x);
} }
@ -86,7 +86,7 @@ fn main() {
# Example 4: Working with custom types and methods # Example 4: Working with custom types and methods
Here's an example of working with Rust. First, the full example, and then we'll break it down: Here's an more complete example of working with Rust. First the example, then we'll break it into parts:
```Rust ```Rust
#[derive(Debug, Clone)] #[derive(Debug, Clone)]