summaryrefslogtreecommitdiff
path: root/tests/projects/rust/shared_library/src/main.rs
blob: 205d23da3fc9020c77e4099e526e8ad8c9fd1696 (plain)
1
2
3
4
5
6
extern crate foo;

fn main() {
    println!("hello xmake!");
    println!("add: {}", foo::add(1, 1));
}