Average loop length: Difference between revisions

m
→‎{{header|REXX}}: changed whitespace.
(C++ Implementation)
m (→‎{{header|REXX}}: changed whitespace.)
Line 1,771:
if runs =='' | runs =="," then runs = 40 /*Not specified? Then use the default.*/
if tests =='' | tests =="," then tests= 1000000 /* " " " " " " */
if datatype(seed, 'W') then call random ,, seed /*Is integer? For RAND repeatability.*/
!.=0; !.0=1 /*used for factorial (!) memoization.*/
numeric digits 100000 /*be able to calculate 25k! if need be.*/