Skip to content

Instantly share code, notes, and snippets.

@chikoski
Last active December 25, 2024 03:42
Show Gist options
  • Save chikoski/5a4fd46062305cc90587ebd739f88c73 to your computer and use it in GitHub Desktop.
Save chikoski/5a4fd46062305cc90587ebd739f88c73 to your computer and use it in GitHub Desktop.
#[no_mangle]
pub fn add(left: u64, right: u64) -> u64 {
left + right
}
#[no_mangle]
pub fn four() {
let value = add(2, 2);
println!("2 + 2 = {value}");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment