diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3847865 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ + +test.lua diff --git a/test.dms b/test.dms index a251170..4b161a8 100644 --- a/test.dms +++ b/test.dms @@ -1,6 +1,7 @@ ENTRY TEST +USING extendedDefine [TEST]{ - newLightThread("TEST2") + newThread("TEST2") ::loop:: print("Hello!") sleep(.5) diff --git a/test.lua b/test.lua index 2947e49..383f140 100644 --- a/test.lua +++ b/test.lua @@ -2,7 +2,7 @@ package.path="?/init.lua;lua/?/init.lua;lua/?.lua;"..package.path local bin = require("bin") local multi = require("multi") require("parseManager") -test=parseManager:load("StoryTest/init.dms") +test=parseManager:load("test.dms")--load("StoryTest/init.dms") print(test:dump()) --Code would happen here anyway t=test:next()