Advertisement
LSLCNR

Untitled

Nov 12th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. local sg = peripheral.wrap("right")
  2.  
  3. local favAddresses = {
  4. {
  5. title = "",
  6. address = ""
  7. }
  8. }
  9.  
  10. local curFuncScreen = nil
  11.  
  12. function resetScreen()
  13. term.clear()
  14. term.setBackgroundColor(colors.gray)
  15. term.setCursorPos(1,1)
  16. end
  17.  
  18. function startup()
  19. curFuncScreen = startup
  20. resetScreen()
  21. print("test")
  22. end
  23.  
  24. startup()
  25.  
  26. while true do
  27. curFuncScreen()
  28. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement