====== absrand ====== ===== Description ===== Get a floating point random number, in the range of 0...1. ===== Function prototype ===== float absrand ===== Arguments ===== None. ===== Return value ===== A floating-point random number, in the range of 0...1. ===== Example ===== // write random number to event log 10 times int i set i 0 do echo incr i while ... the output of which is written to the event log by [[plugins:general:zeoscript:reference:functions:echo]] as: 0.875973 0.726676 0.955901 0.925718 0.539354 0.142338 0.462081 0.235328 0.862239 0.209601 ===== Comments ===== None. ===== See also ===== * [[plugins:general:zeoscript:reference:functions:srand]] * [[plugins:general:zeoscript:reference:functions:rand]] * [[plugins:general:zeoscript:reference:functions:frand]]