From bf40a634dc739fcb09aaf9d6be31038fd5e9715d Mon Sep 17 00:00:00 2001 From: fluxdrive <117932754+mikethe223@users.noreply.github.com> Date: Sat, 31 May 2025 21:13:27 +0200 Subject: [PATCH] add lscor --- halyde/apps/lscor.lua | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 halyde/apps/lscor.lua diff --git a/halyde/apps/lscor.lua b/halyde/apps/lscor.lua new file mode 100644 index 0000000..ffe3495 --- /dev/null +++ b/halyde/apps/lscor.lua @@ -0,0 +1,9 @@ +print("\27[93m"..tostring(#cormgr.corList).."\27[0m coroutines active") +for i=1, #cormgr.corList do + if i==#cormgr.corList then + print("\27[93m└ "..i.."\27[0m - "..cormgr.labelList[i].." \27[0m") + else + print("\27[93m├ "..i.."\27[0m - "..cormgr.labelList[i].." \27[0m") + end + +end