2011-05-12 10:24:54 -05:00
|
|
|
import foo::bar;
|
2011-01-13 17:02:54 -06:00
|
|
|
mod foo {
|
2011-07-27 07:19:39 -05:00
|
|
|
import zed::bar;
|
|
|
|
export bar;
|
|
|
|
mod zed {
|
|
|
|
fn bar() { log "foo"; }
|
2011-01-13 17:02:54 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-31 23:42:05 -05:00
|
|
|
fn main(args: [istr]) { bar(); }
|