xref: /aosp_15_r20/external/bazelbuild-rules_rust/examples/ios/demo.rs (revision d4726bddaa87cc4778e7472feed243fa4b6c267f)
1*d4726bddSHONG Yifan #[no_mangle]
print_something_from_rust()2*d4726bddSHONG Yifan pub 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 Yifan pub extern fn get_a_value_from_rust() -> i32 {
8*d4726bddSHONG Yifan     42
9*d4726bddSHONG Yifan }
10