Skip to content

Commit

Permalink
Move use statements EVEN HARDER
Browse files Browse the repository at this point in the history
  • Loading branch information
randomPoison committed Feb 7, 2025
1 parent fa58f86 commit d09fd4c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/modules/solution.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ src

```rust,ignore
// ---- src/widgets.rs ----
mod button;
mod label;
mod window;
pub use button::Button;
pub use label::Label;
pub use window::Window;
mod button;
mod label;
mod window;
pub trait Widget {
/// Natural width of `self`.
fn width(&self) -> usize;
Expand Down

0 comments on commit d09fd4c

Please sign in to comment.