environment-variables.md book/src/03-04-environment-variables.md
external-tools.md book/src/03-09-external-tools.md
faq.md book/src/faq.md
-guide.md book/src/guide.md
-index.md
+guide.md book/src/guide.md book/src/02-*.md
+index.md book/src/SUMMARY.md book/src/01-*.md
manifest.md
pkgid-spec.md
policies.md
Cargo generated a “hello world” for us. Let’s compile it:
-<pre><code class="language-shell">$ cargo build
-<span style="font-weight: bold"
-class="s1"> Compiling</span> hello_world v0.1.0 (file:///path/to/project/hello_world)</code></pre>
+```shell
+$ cargo build
+ Compiling hello_world v0.1.0 (file:///path/to/project/hello_world)
+```
And then run it:
We can also use `cargo run` to compile and then run it, all in one step:
-<pre><code class="language-shell">$ cargo run
-<span style="font-weight: bold"
-class="s1"> Fresh</span> hello_world v0.1.0 (file:///path/to/project/hello_world)
-<span style="font-weight: bold"
-class="s1"> Running</span> `target/hello_world`
-Hello, world!</code></pre>
+```shell
+$ cargo run
+ Fresh hello_world v0.1.0 (file:///path/to/project/hello_world)
+ Running `target/hello_world`
+Hello, world!
+```
# Going further