mirror of
https://github.com/CPunch/Cosmo.git
synced 2025-12-14 15:51:03 +00:00
7 lines
110 B
Plaintext
7 lines
110 B
Plaintext
|
|
local err, file = os.open("LICENSE.md")
|
||
|
|
if err then
|
||
|
|
print("failed to open file")
|
||
|
|
end
|
||
|
|
|
||
|
|
print(file:read("a"))
|