2010-06-23 21:03:09 -07:00
|
|
|
|
2011-06-15 11:19:50 -07:00
|
|
|
|
|
|
|
|
|
|
|
// -*- rust -*-
|
2010-06-23 21:03:09 -07:00
|
|
|
mod inner {
|
2011-06-15 11:19:50 -07:00
|
|
|
mod inner2 {
|
2011-12-22 14:42:52 -08:00
|
|
|
fn hello() { #debug("hello, modular world"); }
|
2010-06-23 21:03:09 -07:00
|
|
|
}
|
2011-06-15 11:19:50 -07:00
|
|
|
fn hello() { inner2::hello(); }
|
2010-06-23 21:03:09 -07:00
|
|
|
}
|
|
|
|
|
2011-08-19 15:16:48 -07:00
|
|
|
fn main() { inner::hello(); inner::inner2::hello(); }
|