This is an example of how to use the GraphicOutEx and Wait functions.
#download "letters.ric"
string fnames[] = {"letters.ric", "letter2.ric" };
int Values[] = {0};
void Display( int n )
{
Values[0]=n*10;
}
task main()
{
while( true )
{
for( int i=0; i<9; i++ )
Display( i );
}
}