From f8738b563757158c8fe6ffe77d4cdc5dad1e2a62 Mon Sep 17 00:00:00 2001 From: terminaldweller Date: Mon, 3 Jun 2024 15:09:41 -0400 Subject: first lua script, WIP, rss script incoming --- plugins/test.lua | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 plugins/test.lua (limited to 'plugins') 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() -- cgit v1.2.3