lune/.lune/hello_lune.luau

76 lines
1.8 KiB
Text
Raw Normal View History

2023-01-19 01:47:14 +00:00
print("Hello, lune! 🌙")
-- Use a function from another module
local module = require(".lune/module")
2023-01-19 01:47:14 +00:00
module.hello()
-- Read and print out directories & files in
-- the current directory, with fancy icons
print("\nReading current dir...")
local entries = fs.readDir(".")
-- NOTE: We have to do this outside of the sort function
-- to avoid yielding across the metamethod boundary, any
-- calls to fs functions may yield for any reason
local dirs = {}
for _, entry in entries do
dirs[entry] = fs.isDir(entry)
end
-- Sort directories first, then alphabetically
table.sort(entries, function(entry0, entry1)
if dirs[entry0] ~= dirs[entry1] then
return dirs[entry0]
end
return entry0 < entry1
end)
assert(table.find(entries, "Cargo.toml") ~= nil, "Missing Cargo.toml")
assert(table.find(entries, "Cargo.lock") ~= nil, "Missing Cargo.lock")
for _, entry in entries do
if fs.isDir(entry) then
print("📁 " .. entry)
else
print("📄 " .. entry)
end
end
-- Read and print out environment variables
print("\nReading current environment...")
local vars = process.getEnvVars()
table.sort(vars)
assert(table.find(vars, "PATH") ~= nil, "Missing PATH")
assert(table.find(vars, "PWD") ~= nil, "Missing PWD")
for _, key in vars do
local value = process.getEnvVar(key)
local box = if value and value ~= "" then "✅" else "❌"
print(string.format("[%s] %s", box, key))
end
2023-01-19 01:55:27 +00:00
-- Call out to another program / executable
-- NOTE: We don't do this in GitHub Actions and
-- our test suite since ping does not work there
if process.getEnvVar("GITHUB_ACTIONS") == nil then
print("\nSending 4 pings to google...")
local result = process.spawn("ping", {
"google.com",
"-c 4",
})
if result.ok then
print(result.stdout)
else
print(result.stderr)
process.exit(result.code)
end
2023-01-19 01:47:14 +00:00
end
print("\nGoodbye, lune! 🌙")