Setvirtualresolution(640,480)
ResetTimer()
//Convert string values to a Decimal(float) value
Char$="10"+".86"+"50"
num#=ValFloat(Char$)
Repeat
Print (num#)
Sync()
Until Timer()>10
End
Help make AGK better by submitting an example for this command! (All examples are subject to approval)
Setvirtualresolution(640,480) ResetTimer() //Convert string values to a Decimal(float) value Char$="10"+".86"+"50" num#=ValFloat(Char$) Repeat Print (num#) Sync() Until Timer()>10 End