Blame examples/dir.lua

Packit 437b5e
local dirent = require "posix.dirent"
Packit 437b5e
Packit 437b5e
local ok, files = pcall (dirent.dir "/var/log")
Packit 437b5e
if not ok then
Packit 437b5e
  print ("/var/log: " .. files)
Packit 437b5e
end
Packit 437b5e
Packit 437b5e
for _, f in ipairs (files) do
Packit 437b5e
  print (f)
Packit 437b5e
end