-- COGRandom.mesa: Random reals
-- last modified by Stolfi September 17, 1982 3:45 pm
-- compile COGRandom
DIRECTORY;
COGRandom: CEDAR DEFINITIONS =
BEGIN
Toss:
PROC [min, max:
REAL]
RETURNS [r:
REAL];
-- Returns a real number between min and max (exclusive).
END.