Hey, so we're new to Rust. How do I import something in one file from another file?
@Frost do you mean with modules? the system is a bit unintuitive at first but there's good docs on it
@lunch I guess. I'm not really sure what modules /are/, am I supposed to use one module per class/structure/etc.?

@Frost I treat them roughly how I treat different .c files in a C project

so whatever feels right in that respect

@lunch Yeah that's what I do for the files too, I just didn't know whether it was one module per file. Looks like it is. ^^
@Frost you actually can do:
mod foo {
pub fn look_at_me() {
}
}
which is what you do for tests