pub fn exp2(args: &[Value]) -> Result<Value, RuntimeError>
2的幂运算
计算 2 的 x 次幂。
x
Number - 2^x
exp2(x) = 2^x
Set a Exp2(3) # 8.0 Set b Exp2(10) # 1024.0 Set c Exp2(-1) # 0.5