====== sqrt ======
===== Description =====
Calculate the square root of a number.
===== Function prototype =====
double sqrt
===== Arguments =====
^ Name ^ Type ^ Comment ^
| //value// | double | A number, the square root of which is to be calculated. |
===== Return value =====
The square root of the value provided, in double-precision.
===== Example =====
echo // sqrt(9) = 3
... the output of which is written to the event log by [[plugins:general:zeoscript:reference:functions:echo]] as:
3
===== Comments =====
None.
===== See also =====
* [[plugins:general:zeoscript:reference:functions:pow]]