summaryrefslogtreecommitdiff
path: root/tests/static_library_rust/src/main.rs
blob: 0cd4449d14dd85b1c05ed41488cc8144d9683ca0 (plain)
1
2
3
4
5
6
7
extern crate interfaces;

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