2010-06-23 23:03:09 -05:00
|
|
|
// -*- rust -*-
|
|
|
|
|
|
|
|
mod inner {
|
|
|
|
mod inner2 {
|
|
|
|
fn hello() {
|
|
|
|
log "hello, modular world";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fn hello() {
|
2011-05-12 10:24:54 -05:00
|
|
|
inner2::hello();
|
2010-06-23 23:03:09 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2011-05-12 10:24:54 -05:00
|
|
|
inner::hello();
|
|
|
|
inner::inner2::hello();
|
2010-06-23 23:03:09 -05:00
|
|
|
}
|