/* $DOC$ $NAME$ ft_Rand1() $CATEGORY$ Math $ONELINER$ Generate a random number $SYNTAX$ ft_Rand1( ) -> nRand $ARGUMENTS$ Maximum limit of value to be produced. $RETURNS$ nRand is a random number between 0 (inclusive) and (exclusive). $DESCRIPTION$ Generates a non-integer random number based on the Linear Congruential Method. If you need a random number between 1 and inclusive, Int() the result and add 1. If you need a random number between 0 and inclusive, then you should Round() the result. $EXAMPLES$ ? Int( ft_Rand1( 100 ) ) + 1 // 1 <= nResult <= 100 ? Round( ft_Rand1( 100 ), 0 ) // 0 <= nResult <= 100 ? ft_Rand1( 1 ) // 0 <= nResult < 1 $END$ */