Skip to content

Commit baeec5f

Browse files
Add main.lua for the test implementation
1 parent a4075d8 commit baeec5f

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

test/main.lua

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
local lfs = require "lfs";
2+
3+
for entry in lfs.dir("./") do
4+
if (not entry:match("^([%.]+)$")) then
5+
print("entry", entry);
6+
end
7+
end

0 commit comments

Comments
 (0)