Hi, I found this thread by searching for Pascalscript. I downloaded the demos for pascalscript, it appears to be quite complex.
If i need something as simple as this, which (besen, pascalscript, or lua) should I use?
If xxx = 'yyy' then
begin
runfunction(x)
end
else begin
runfunction(y);
exit;
end;
If xxx > 123 then runfunction(x) else runfunction(y);
exit;
xxx, yyy, x and y are variables I will pass to the script, which the user will modify the script in a memobox. I do not necessarily need to use Pascal for the scripting - the end users are sys admins. Preferably there should be a way to test the script - in case the user tries to use xxx>123, where xxx is a string variable!
Appreciate any opinion, thanks!