code wiki / (root) / nx_symj_fixa.nx

nx_symj_fixa.nx source

↩ module page · 1 lines · 85 B

1func sgn(x: i64) -> i64 { if x > 0 { return 1 } if x < 0 { return 0 - 1 } return 0 }