llSay(0,(string)llPow(3.0, 2.0)); // returns 9 (3*3) llSay(0,(string)llPow(4.0, 5.0)); // returns 1024 (4*4*4*4*4)
llSqrt(4.0); //Using the math library's square root function llPow(4.0, 1.0/2.0); //Using a power to return a square root
llPow(27.0, 1.0/3.0);