(AGK version: 108.13)
Submitted: 2013-06-15 16:02:52
//Set screen and Font Color
Setvirtualresolution(640,480)
SetClearColor (100, 220, 200 )
SetPrintColor (0,0,0)


//Initiate Values
integer_start=1000
string_value$="AGK"

//Print example
For i=1 to 500
    Print ("")
    Printc (integer_start+i)
    Printc (":")
    Print (string_value$)
    Sync()
Next i

Sleep(1000)
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.