Skip to content

Instantly share code, notes, and snippets.

@eventhelix
Last active May 7, 2022 17:38
Show Gist options
  • Save eventhelix/8abb143f41abd10c5355fe643e9c6ac2 to your computer and use it in GitHub Desktop.
Save eventhelix/8abb143f41abd10c5355fe643e9c6ac2 to your computer and use it in GitHub Desktop.
A simple function in Rust
pub fn add(a: u64, b: u64) -> u64 {
a + b
}
@eventhelix
Copy link
Author

A simple function that adds two numbers and returns the result.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment