mlua-luau-scheduler/examples/basic_spawn.luau
2024-01-19 22:47:33 +01:00

9 lines
166 B
Text

--!nocheck
--!nolint UnknownGlobal
local file = readFile("Cargo.toml")
if file ~= nil then
print("Cargo.toml found!")
print("Contents:")
print(file)
end