2010-06-23 23:03:09 -05:00
|
|
|
|
2011-06-15 13:19:50 -05:00
|
|
|
|
|
|
|
|
|
|
|
// -*- rust -*-
|
2010-06-23 23:03:09 -05:00
|
|
|
mod inner {
|
2011-06-15 13:19:50 -05:00
|
|
|
mod inner2 {
|
|
|
|
fn hello() { log "hello, modular world"; }
|
2010-06-23 23:03:09 -05:00
|
|
|
}
|
2011-06-15 13:19:50 -05:00
|
|
|
fn hello() { inner2::hello(); }
|
2010-06-23 23:03:09 -05:00
|
|
|
}
|
|
|
|
|
2011-06-15 13:19:50 -05:00
|
|
|
fn main() { inner::hello(); inner::inner2::hello(); }
|