7 lines
110 B
Rust
7 lines
110 B
Rust
|
#![crate_name = "foo"]
|
||
|
#![crate_type = "rlib"]
|
||
|
|
||
|
static FOO: uint = 3;
|
||
|
|
||
|
pub fn foo() -> &'static uint { &FOO }
|