方法介绍
方法名称:绝对值
语法:math.abs(number)
参数说明:number可以是任意有效的数值表达式
返回值
浮点型:返回数字的绝对值
方法例子
local ret = math.abs(-2)
print(ret)