suppose
String st
st = "12345"
Long i, t
For i=1 To Len(st)^2
t+i
Next
MsgBox 0, t
1- is the Len(st)^2 evaluated every time the loop executed, or once and replaced by a number internally
2- is it the same situation using a compiler ?