7 lines
68 B
Rust
7 lines
68 B
Rust
|
extern crate foo;
|
||
|
extern crate bar;
|
||
|
|
||
|
fn main() {
|
||
|
bar::doit();
|
||
|
}
|