Open
Description
// some_third_party_crate/lib.rs
mod some_third_party_crate {
pub fn show() {}
}
//////////////////////////////////////////
//////////////////////////////////////////
//////////////////////////////////////////
// main.rs
some_third_party_crate::show();
We should suggest the user wrap their code in fn main() { ... }