@@ -27,7 +27,7 @@ Check out the generated `Cargo.toml`:
27
27
[package ]
28
28
29
29
name = " guessing_game"
30
- version = " 0.0.1 "
30
+ version = " 0.1.0 "
31
31
authors = [
" Your Name <[email protected] >" ]
32
32
```
33
33
@@ -46,7 +46,7 @@ Let’s try compiling what Cargo gave us:
46
46
47
47
``` {bash}
48
48
$ cargo build
49
- Compiling guessing_game v0.0.1 (file:///home/you/projects/guessing_game)
49
+ Compiling guessing_game v0.1.0 (file:///home/you/projects/guessing_game)
50
50
```
51
51
52
52
Excellent! Open up your ` src/main.rs ` again. We’ll be writing all of
@@ -58,7 +58,7 @@ Try it out:
58
58
59
59
``` bash
60
60
$ cargo run
61
- Compiling guessing_game v0.0.1 (file:///home/you/projects/guessing_game)
61
+ Compiling guessing_game v0.1.0 (file:///home/you/projects/guessing_game)
62
62
Running ` target/debug/guessing_game`
63
63
Hello, world!
64
64
```
@@ -727,7 +727,7 @@ Let’s try our program out!
727
727
728
728
` ` ` bash
729
729
$ cargo run
730
- Compiling guessing_game v0.0.1 (file:///home/you/projects/guessing_game)
730
+ Compiling guessing_game v0.1.0 (file:///home/you/projects/guessing_game)
731
731
Running ` target/guessing_game`
732
732
Guess the number!
733
733
The secret number is: 58
@@ -792,7 +792,7 @@ and quit. Observe:
792
792
793
793
` ` ` bash
794
794
$ cargo run
795
- Compiling guessing_game v0.0.1 (file:///home/you/projects/guessing_game)
795
+ Compiling guessing_game v0.1.0 (file:///home/you/projects/guessing_game)
796
796
Running ` target/guessing_game`
797
797
Guess the number!
798
798
The secret number is: 59
@@ -929,7 +929,7 @@ Now we should be good! Let’s try:
929
929
930
930
` ` ` bash
931
931
$ cargo run
932
- Compiling guessing_game v0.0.1 (file:///home/you/projects/guessing_game)
932
+ Compiling guessing_game v0.1.0 (file:///home/you/projects/guessing_game)
933
933
Running ` target/guessing_game`
934
934
Guess the number!
935
935
The secret number is: 61
0 commit comments