You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

Syntax
set anInteger = random(minimum, maximum)
Semanticsrandom() returns anInteger value between minimum and maximum.
Substitutablesminimum, maximumCan be any variable or object attribute having the type Integer. If maximum is less or equal minimum an error will occur. 
Examples
set rand = random(0, 10);
  • No labels