1*d4726bddSHONG Yifan #[no_mangle] print_something_from_rust()2*d4726bddSHONG Yifanpub extern fn print_something_from_rust() { 3*d4726bddSHONG Yifan println!("Ferris says hello!"); 4*d4726bddSHONG Yifan } 5*d4726bddSHONG Yifan 6*d4726bddSHONG Yifan #[no_mangle] get_a_value_from_rust() -> i327*d4726bddSHONG Yifanpub extern fn get_a_value_from_rust() -> i32 { 8*d4726bddSHONG Yifan 42 9*d4726bddSHONG Yifan } 10