I hate asking stupid questions, but for the life of me I cannot find an explaination that is in terms I can make any since of. What is the difference between Integers and Long Integers. I've googled and found the 64bit/32bit explainations... sorry, that doesn't help. I thought an integer was a whole number, but obviously there is something more to it than that. I wrote a little test script just to see what would happen:

Code:
 
break on

for $i=1 to 20
? "" + $i + ":" + vartype($i)
sleep 1
next



In this example, every number is a vartype of 3 (Long Integer). So my second question is, where in kixtart would you find a Integer (not Long Integer)?