mirror of
https://github.com/KevinMidboe/linguist.git
synced 2026-09-11 10:22:58 +00:00
Add 1.0 rust sample and add file with extern crate usage
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,12 @@
|
||||
extern crate foo;
|
||||
extern crate bar;
|
||||
|
||||
use foo::{self, quix};
|
||||
use bar::car::*;
|
||||
use bar;
|
||||
|
||||
fn main() {
|
||||
println!("Hello {}", "World");
|
||||
|
||||
panic!("Goodbye")
|
||||
}
|
||||
Reference in New Issue
Block a user