Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- _G.shell = {}
- term.setTextColor(colors.white)
- term.clear()
- term.setCursorPos(1,1)
- term.setTextColor(colors.red)
- print("Enter Functions:")
- term.setTextColor(colors.yellow)
- function init()
- while true do
- write("> ")
- A = read()
- local ok, err = pcall(loadstring(A))
- if err then
- printError(err)
- init()
- end
- end
- end
- init()
Add Comment
Please, Sign In to add comment