Page 1 of 1

Programing LUA Indirect Expresión

PostPosted: Thu Apr 06, 2017 6:53 am
by Kilgharrah
Hi, there is some function that allows to use the content of a variable as follows:

Code: Select all
.
local a = 10;
local b = 11;
.
.
local exp = nil;
.
.
exp = "a < b";

if xxx(exp) then
.
.


Where xxx is how to use if a < b then as programming instruction, I hope I made myself clear.

Thanks