Advertisement
NorthmcCormick

Untitled

Sep 17th, 2014
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. print("Booting NOS")
  2. os.sleep(1)
  3. --Set Up Globals
  4.  
  5. --Set Up Functions
  6.  
  7. --Set Up Render
  8.  
  9. for i=1,40 do
  10.         write(i)
  11.     end
  12.  
  13. while true do
  14.     --Logic
  15.  
  16.     --Render
  17.     term.clear()
  18.     term.setCursorPos(1,1)
  19.  
  20.     for i=1,51 do
  21.         write("1")
  22.     end
  23.  
  24.     os.sleep(1)
  25. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement