Skip to content

Instantly share code, notes, and snippets.

@gskachkov
Created March 15, 2018 18:38
Show Gist options
  • Save gskachkov/1c429415972d4cdd6831e2f4cbe8094b to your computer and use it in GitHub Desktop.
Save gskachkov/1c429415972d4cdd6831e2f4cbe8094b to your computer and use it in GitHub Desktop.
#[no_mangle]
pub fn calc(a: i32, b: i32) -> i32 {
if a > 10 {
return a * 5;
}
b * a
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment