Skip to main content

One doc tagged with "organization"

View all tags

Modules and `use`: Organizing Code

As your programs grow larger, it becomes important to organize your code to keep it manageable. Rust provides a powerful module system for this purpose. In this article, we'll explore how to group code into modules and how to bring items into scope with the use keyword.