Project

General

Profile

Bug #2094 » test.lua

lua script for the test - Chris Knott, 04/12/2017 09:02 AM

 
function init (args)
local needs = {}
needs["flowvar"] = {"TestVar"}
return needs
end

function match(args)
print "Before loading Variable"
testVar = ScFlowvarGet(0);
if testVar then
print "testVar is set"
else
print "testVar is not set"
end
return 1
end

return 0
(2-2/5)