aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/test.lua
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/test.lua')
-rw-r--r--plugins/test.lua13
1 files changed, 13 insertions, 0 deletions
diff --git a/plugins/test.lua b/plugins/test.lua
new file mode 100644
index 0000000..23eab94
--- /dev/null
+++ b/plugins/test.lua
@@ -0,0 +1,13 @@
+local function sleep(n)
+ local t0 = os.clock()
+ while os.clock() - t0 <= n do end
+end
+
+local function printer()
+ while true do
+ send_message("Hello, World!", "#warroom")
+ sleep(5)
+ end
+end
+
+printer()