1 2 3 4 5 6 7
#![crate_type = "rlib"] extern crate some_value; pub fn print_value() { println!("{}", some_value::get_some_value()); }