1
Fork 0

libsyntax: Parse "extern mod foo;"

This commit is contained in:
Patrick Walton 2012-08-14 14:22:52 -07:00
parent 350668579a
commit 138dc3048a
2 changed files with 107 additions and 37 deletions

View file

@ -0,0 +1,7 @@
extern mod std;
use std::map::hashmap;
fn main() {
io::println("Hello world!");
}