We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4075d8 commit baeec5fCopy full SHA for baeec5f
test/main.lua
@@ -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