This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
zhangyang-zerotierone/zeroidc/src/lib.rs

14 lines
181 B
Rust
Raw Normal View History

2021-10-27 16:11:06 -07:00
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
assert_eq!(2 + 2, 4);
}
}
#[no_mangle]
pub extern "C" fn hello_rust() {
println!("Hello, Rust from C!")
}