(AGK version: 108.13)
Submitted: 2013-06-15 15:53:28
//Set screen and Print Colors
Setvirtualresolution(640,480)
SetClearColor (100, 220, 200 )
SetPrintColor (0,0,0)


//Create a float, integer and string
float_number#=0.1
integer_number=1000
string_value$="AGK"

//Print example
For i=1 to 500
    Print (float_number#+i/10.02)
    Print (integer_number+i)
    Print (string_value$)
    Sync()
Next i

Sleep(1000)
End
(AGK version: 2.0.16)
Submitted: 2016-05-05 20:35:13
A=2
B=5
print(a)
Submitted: 2020-03-01 21:49:41
// Use Chr(10) to insert carraige return/line feed in printed text
Print("First Line" + Chr(10) + "Second Line")
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.