9
Can I not use dot in filename for a Rust module?
(programming.dev)
Welcome to the Rust community! This is a place to discuss about the Rust programming language.
Credits
Dots are not allowed. If it's not too much code, you can use inline modules, otherwise you have to stick to:
And then:
Thanks, yeah it felt like too many tests to keep in file. I can live with that directory approach. TY!