mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 09:40:21 +00:00
13 lines
159 B
Rust
13 lines
159 B
Rust
extern crate foo;
|
|
extern crate bar;
|
|
|
|
use foo::{self, quix};
|
|
use bar::car::*;
|
|
use bar;
|
|
|
|
fn main() {
|
|
println!("Hello {}", "World");
|
|
|
|
panic!("Goodbye")
|
|
}
|