Sirshark10

.bios

Mar 13th, 2017
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. _G.shell = {}
  2. term.setTextColor(colors.white)
  3. term.clear()
  4. term.setCursorPos(1,1)
  5. term.setTextColor(colors.red)
  6. print("Enter Functions:")
  7. term.setTextColor(colors.yellow)
  8. function init()
  9.   while true do
  10.     write("> ")
  11.     A = read()
  12.     local ok, err = pcall(loadstring(A))
  13.     if err then
  14.       printError(err)
  15.       init()
  16.     end
  17.   end
  18. end
  19. init()
Add Comment
Please, Sign In to add comment