to: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(this command will need a review)
 
mNo edit summary
Line 9: Line 9:
'''Operand types:'''
'''Operand types:'''


for "_var" from a: for [[Type]]
for "_var" from a:[[For Type]]
 
b: [[Number]]
b: [[Number]]


'''Type of returned value:'''
'''Type of returned value:'''


for type
For Type


'''Compatibility:'''
'''Compatibility:'''
Line 23: Line 24:


Continue sequence of 'for' command.
Continue sequence of 'for' command.


'''Example:'''
'''Example:'''


for "_x" from 10 '''to''' 20 do {..code..}
for "_x" from 10 '''to''' 20 do {..code..}

Revision as of 21:54, 28 June 2006



for "_var" from a to b


Operand types:

for "_var" from a:For Type

b: Number

Type of returned value:

For Type

Compatibility:

Version 2.60 required.

Description:

Continue sequence of 'for' command.


Example:

for "_x" from 10 to 20 do {..code..}