8 lines
85 B
Rust
8 lines
85 B
Rust
|
|
|
|
mod foo {
|
|
fn bar(offset: uint) { }
|
|
}
|
|
|
|
fn main(args: ~[~str]) { foo::bar(0u); }
|