Is there an equivalent to php's eval for arma engine ?
Can i set a piece of code to a value and execute it ?
This code would be dynamically created...so its not the same all the time.
And i am not talking about an if statement...The code to be executed can only exist as a value..
Something like :
_value =
{
if (typeName _x == "STRING") then {
diag_log _x;
}
}
[] execVM _value;
?

