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