diff options
Diffstat (limited to '')
-rw-r--r-- | llthreads2/test/test_load_llthreads2.lua | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/llthreads2/test/test_load_llthreads2.lua b/llthreads2/test/test_load_llthreads2.lua new file mode 100644 index 0000000..11bf0a0 --- /dev/null +++ b/llthreads2/test/test_load_llthreads2.lua | |||
@@ -0,0 +1,7 @@ | |||
1 | local llthreads = require"llthreads2" | ||
2 | |||
3 | llthreads.new([[ | ||
4 | local os = require "os" | ||
5 | print("Done!") | ||
6 | os.exit(0) | ||
7 | ]]):start():join() \ No newline at end of file | ||