forked from AbleOS/holey-bytes
10 lines
193 B
Plaintext
10 lines
193 B
Plaintext
|
signum := fn($Expr: type, x: Expr): int {
|
||
|
if x > @as(Expr, @intcast(0)) {
|
||
|
return 1
|
||
|
} else if x < @as(Expr, @intcast(0)) {
|
||
|
return -
|
||
|
} else {
|
||
|
return 0
|
||
|
}
|
||
|
}
|