Advertisement
Guest User

calculateBetter2

a guest
Mar 23rd, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.19 KB | None | 0 0
  1. textutils.slowPrint("CALCULATOR INITIATED (type 'exit' to exit)")
  2. while true do
  3. local input = read()
  4. if input == "exit" then
  5.  break
  6. else
  7.  shell.run("calculateBetter "..input)
  8. end
  9. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement