compile: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
m (Some wiki formatting)
 
(58 intermediate revisions by 6 users not shown)
Line 1: Line 1:
{{Command|= Comments
{{RV|type=command
____________________________________________________________________________________________


| arma |= Game name
|game1= arma1
|version1= 1.00


|1.00|= Game version
|game2= arma2
____________________________________________________________________________________________
|version2= 1.00


| Compile expression. |= Description
|game3= arma2oa
____________________________________________________________________________________________
|version3= 1.50


| '''compile''' expression |= Syntax
|game4= tkoh
|version4= 1.00


|p1= expression: [[String]] |= Parameter 1
|game5= arma3
|version5= 0.50


| [[Code]] |= Return value
|gr1= Strings
____________________________________________________________________________________________
 
|x1= <code>_string <nowiki>=</nowiki> "a <nowiki>=</nowiki> a + 1";
_code <nowiki>=</nowiki> [[compile]] _string;
[[call]] _code;</code> |= Example 1


|x2= <code>[[hint]] [[str]] [[compile]] "a = b";
|descr= Compiles [[String]] expression into [[Code]].
//Result: {a=b}</code> |= Example 2
____________________________________________________________________________________________


| [[call]], [[spawn]], [[compileFinal]] |= See also
|s1= [[compile]] expression


}}
|p1= expression: [[String]] - expression to be compiled


<h3 style="display:none">Notes</h3>
|r1= [[Code]] - compiled expression
<dl class="command_description">
<!-- Note Section BEGIN -->


<!-- Note Section END -->
|x1= <sqf>
</dl>
_string = "a = a + 1";
_code = compile _string;
call _code;
</sqf>


<h3 style="display:none">Bottom Section</h3>
|x2= <sqf>
hint str compile "a = b";
// result: { a = b }
</sqf>


[[Category:Scripting Commands|COMPILE]]
|seealso= [[call]] [[spawn]] [[compileFinal]] [[compileScript]] [[parseSimpleArray]] [[isFinal]]
[[Category:Scripting Commands ArmA|COMPILE]]
}}
[[Category:Command_Group:_Variables|{{uc:{{PAGENAME}}}}]]
[[Category:Command_Group:_System_Commands|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]

Latest revision as of 14:05, 13 May 2022

Hover & click on the images for description

Description

Description:
Compiles String expression into Code.
Groups:
Strings

Syntax

Syntax:
compile expression
Parameters:
expression: String - expression to be compiled
Return Value:
Code - compiled expression

Examples

Example 1:
_string = "a = a + 1"; _code = compile _string; call _code;
Example 2:
hint str compile "a = b"; // result: { a = b }

Additional Information

See also:
call spawn compileFinal compileScript parseSimpleArray isFinal

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note