Merge pull request #2447 from Ryman/rustup

Split on comma in language name if no match is found
This commit is contained in:
Arfon Smith
2015-08-07 10:28:21 +01:00
4 changed files with 2351 additions and 3 deletions

2324
samples/Rust/hashmap.rs Normal file

File diff suppressed because it is too large Load Diff

12
samples/Rust/main.rs Normal file
View File

@@ -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")
}