summaryrefslogtreecommitdiff
path: root/tests/projects/rust/static_library/src/main.rs
blob: de8604a65d150fca2e5e2c84eb5b3b9743ef880c (plain)
1
2
3
4
5
extern crate foo;
fn main() {
    println!("hello xmake!");
    println!("add: {}", foo::add(1, 1));
}