Cosmo/examples/reader.cosmo

10 lines
142 B
Plaintext

local err, file = os.open("LICENSE.md")
print("made file")
if err then
print("failed to open file")
end
print(file)
print(file:read("a"))