blob: 37b75877e2ac835aa2afc1bfc638b8ef768620da [file] [log] [blame]
Adam Snaider1c095c92023-07-08 02:09:58 -04001#[no_mangle]
2pub extern fn print_something_from_rust() {
3 println!("Ferris says hello!");
4}
5
6#[no_mangle]
7pub extern fn get_a_value_from_rust() -> i32 {
8 42
9}