(AGK version: 108.14)
Submitted: 2013-07-05 00:57:19
Setvirtualresolution(640,480)
ResetTimer()
//Select 10 random numbers (range -10 to +10)
Dim number[10]
For i=1 to 10
    number[i]=RandomSign(Random(0,10))
Next i
//Display the results
Repeat
    For i=1 to 10
        Print("Number "+Str(i)+" is "+Str(number[i]))
    Next i
    Sync()
Until Timer()>18
End
Help make AGK better by submitting an example for this command!
(All examples are subject to approval)
Login to post an example of your own.