finished ch7.2 and started ch7.3

This commit is contained in:
2025-01-14 21:53:50 -07:00
parent fe021038de
commit c6299ee523
5 changed files with 81 additions and 5 deletions

View File

@ -15,4 +15,6 @@ These features are known collectively as the ``module system`` they include
- [**Packages**](Packages.md): A feature of Cargo that allows you to build, test and share crates
- [**Crates**](Crates.md): A tree of modules that produces a library or an executable
- [**Modules** and **use**](Modules%20and%20Use.md): lets you control the organization, scope and privacy of paths
- **Paths**: A way of naming an item, such as a struct, function or module
- [**Paths**](Paths.md): A way of naming an item, such as a struct, function or module
## Best Practices for Packages with a Binary and a Library