dmrconfig/src/lib.rs

14 lines
192 B
Rust
Raw Normal View History

2021-02-27 21:01:44 -08:00
#[no_mangle]
pub extern "C" fn print_message_from_rust() {
println!("Calling from Rust!");
}
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
assert_eq!(2 + 2, 4);
}
}