1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-06-12 12:27:36 +02:00

Add directory tree to mod exercise solution (#1602)

The solution to the modules exercise comes with a bunch of files. I
think it would help the students to get a quick overview of the
directory structure we've chosen first.
This commit is contained in:
Martin Huschenbett 2023-12-20 16:39:48 +01:00 committed by GitHub
parent e60f56e8f2
commit 0f0596da9d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,6 +16,16 @@
// limitations under the License.
-->
```ignore
src
├── main.rs
├── widgets
│   ├── button.rs
│   ├── label.rs
│   └── window.rs
└── widgets.rs
```
```rust,ignore
// ---- src/widgets.rs ----
mod button;