compile: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
 
mNo edit summary
Line 3: Line 3:




<h2 style="color:#000066">''''' compile ''expression'''''</h2>
<h2 style="color:#000066">''' compile ''expression'''''</h2>




Line 9: Line 9:


'''expression:''' [[String]]
'''expression:''' [[String]]


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

Revision as of 01:36, 6 July 2006


compile expression


Operand types:

expression: String

Type of returned value:

Code

Compatibility:

Version 2.60 required.

Description:

Compile expression.

Example:

_function = "a = a + 1"; _compiled = compile _function; call _compiled;