Core utility functions for integer arithmetic.
Returns the absolute value of x.
Returns the larger of a and b.
Returns the smaller of a and b.
Clamps value to the range [low, high].
load std.core
let a = core.abs_i(-5) # 5
let m = core.max_i(3, 7) # 7
let c = core.clamp(15, 0, 10) # 10