Skip to content

Instantly share code, notes, and snippets.

@znepb
Last active July 4, 2021 03:25
Show Gist options
  • Save znepb/f77c16e016283da07363f595feff8672 to your computer and use it in GitHub Desktop.
Save znepb/f77c16e016283da07363f595feff8672 to your computer and use it in GitHub Desktop.
local f = fs.open("startup.lua", "w")
f.write("")
f.close()
local f = fs.open("startup.lua", "a")
f.write('term.clear()')
f.write('term.setCursorPos(1, 1)')
f.write('print("My OS 1.0")')
f.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment