Posts by Jeriel • 21 points
1 post
-
2
votes3
answers237
viewsQ: Modules in Rust
The structure of my project is like this: src/main.rs --- game.rs --- game_state.rs Within game.rs has: mod game_state; And within game_state.rs has mod game; But this returns me an error: file not…