@@ -315,7 +315,7 @@ Put this inside:
315
315
[package]
316
316
317
317
name = "hello_world"
318
- version = "0.1.0 "
318
+ version = "0.0.1 "
319
319
authors = [ "Your name <[email protected] >" ]
320
320
321
321
[[bin]]
@@ -1813,7 +1813,7 @@ Try it out:
1813
1813
1814
1814
``` {notrust,ignore}
1815
1815
$ cargo run
1816
- Compiling guessing_game v0.1.0 (file:///home/you/projects/guessing_game)
1816
+ Compiling guessing_game v0.0.1 (file:///home/you/projects/guessing_game)
1817
1817
Running `target/guessing_game`
1818
1818
Hello, world!
1819
1819
```
@@ -1959,7 +1959,7 @@ Try running our new program a few times:
1959
1959
1960
1960
``` {notrust,ignore}
1961
1961
$ cargo run
1962
- Compiling guessing_game v0.1.0 (file:///home/you/projects/guessing_game)
1962
+ Compiling guessing_game v0.0.1 (file:///home/you/projects/guessing_game)
1963
1963
Running `target/guessing_game`
1964
1964
Guess the number!
1965
1965
The secret number is: 7
@@ -2012,7 +2012,7 @@ And trying it out:
2012
2012
2013
2013
``` {notrust,ignore}
2014
2014
$ cargo run
2015
- Compiling guessing_game v0.1.0 (file:///home/you/projects/guessing_game)
2015
+ Compiling guessing_game v0.0.1 (file:///home/you/projects/guessing_game)
2016
2016
Running `target/guessing_game`
2017
2017
Guess the number!
2018
2018
The secret number is: 57
@@ -2283,7 +2283,7 @@ print an error message and return. Let's give this a shot:
2283
2283
2284
2284
``` {notrust,ignore}
2285
2285
$ cargo run
2286
- Compiling guessing_game v0.1.0 (file:///home/you/projects/guessing_game)
2286
+ Compiling guessing_game v0.0.1 (file:///home/you/projects/guessing_game)
2287
2287
Running `target/guessing_game`
2288
2288
Guess the number!
2289
2289
The secret number is: 17
@@ -2348,7 +2348,7 @@ Let's try it!
2348
2348
2349
2349
``` {notrust,ignore}
2350
2350
$ cargo run
2351
- Compiling guessing_game v0.1.0 (file:///home/you/projects/guessing_game)
2351
+ Compiling guessing_game v0.0.1 (file:///home/you/projects/guessing_game)
2352
2352
Running `target/guessing_game`
2353
2353
Guess the number!
2354
2354
The secret number is: 58
@@ -2425,7 +2425,7 @@ that `return`? If we give a non-number answer, we'll `return` and quit. Observe:
2425
2425
2426
2426
``` {notrust,ignore}
2427
2427
$ cargo run
2428
- Compiling guessing_game v0.1.0 (file:///home/you/projects/guessing_game)
2428
+ Compiling guessing_game v0.0.1 (file:///home/you/projects/guessing_game)
2429
2429
Running `target/guessing_game`
2430
2430
Guess the number!
2431
2431
The secret number is: 59
@@ -2557,7 +2557,7 @@ Now we should be good! Let's try:
2557
2557
2558
2558
``` {notrust,ignore}
2559
2559
$ cargo run
2560
- Compiling guessing_game v0.1.0 (file:///home/you/projects/guessing_game)
2560
+ Compiling guessing_game v0.0.1 (file:///home/you/projects/guessing_game)
2561
2561
Running `target/guessing_game`
2562
2562
Guess the number!
2563
2563
The secret number is: 61
0 commit comments