1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-03-22 14:59:37 +02:00

Move hello world example to second section (#1838)

The current location for the hello world example is awkward since the
two surrounding pages are both talking about Rust from a high level
without talking about syntax at all. I think starting the second section
(types and values) with the hello world example would help the first
section flow more smoothly.
This commit is contained in:
Nicole L 2024-02-21 13:54:11 -08:00 committed by GitHub
parent 7fb4ad9ed2
commit e7076af00f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 1 deletions

View File

@ -18,10 +18,10 @@
- [Welcome](welcome-day-1.md)
- [Hello, World](hello-world.md)
- [What is Rust?](hello-world/what-is-rust.md)
- [Hello, World](hello-world/hello-world.md)
- [Benefits of Rust](hello-world/benefits.md)
- [Playground](hello-world/playground.md)
- [Types and Values](types-and-values.md)
- [Hello, World](types-and-values/hello-world.md)
- [Variables](types-and-values/variables.md)
- [Values](types-and-values/values.md)
- [Arithmetic](types-and-values/arithmetic.md)