Skip to content

Instantly share code, notes, and snippets.

@PJK
Created October 30, 2017 21:53
Show Gist options
  • Save PJK/dd31472b87c470c8cffcf5640b5c934e to your computer and use it in GitHub Desktop.
Save PJK/dd31472b87c470c8cffcf5640b5c934e to your computer and use it in GitHub Desktop.
fn sgn(x: i32) -> i32 {
match x {
y if y < 0 => -1,
y if y == 0 => 0,
y if y > 0 => 1,
}
}
fn main() {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment