lune/crates/mlua-luau-scheduler/examples/lua/basic_spawn.luau

18 lines
307 B
Text
Raw Normal View History

--!nocheck
--!nolint UnknownGlobal
local _, err = pcall(function()
local file = readFile("Cargo.toml")
if file ~= nil then
print("Cargo.toml found!")
print("Contents:")
print(file)
else
print("Cargo.toml not found!")
end
end)
if err ~= nil then
print("Error while reading file: " .. err)
end