pub fn round(args: &[Value]) -> Result<Value, RuntimeError>
四舍五入
将数字四舍五入到最接近的整数。
x
Number - 四舍五入后的整数值
Set a Round(3.4) # 3.0 Set b Round(3.5) # 4.0 Set c Round(-2.5) # -3.0