ID:259928
 
"to" is sort of like an operator, isn't it?
Wouldn't it be cool if it was blue? =/
I wish it was. :(
As is "step"!

for(var/cash = 0 to 2 step 0.01)
world << "You pick up a penny! You now have $[cash]."
sleep(10)
In response to Yota
I'm fairly sure BYOND doesn't use that syntax for for.

for(var/a=1,a<=10,a++) world << a
In response to Jp
It does, it's secondary.
In response to Jp
Jp wrote:
I'm fairly sure BYOND doesn't use that syntax for for.

BYOND allows that syntax, but it isn't, to my knowledge, documented anywhere.