Guest User

Untitled

a guest
Dec 10th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.23 KB | None | 0 0
  1. term.clear()
  2. term.setCursorPos(1, 1)
  3.  
  4. local x = 0
  5.  
  6. for i = -10, -1 do
  7.    x = math.sqrt(i*i)
  8.    print ("Launching in: "..x)
  9.    sleep(1)
  10. end
  11.  
  12. print("Launch!")
  13. rs.setOutput("right", true)
  14. sleep(0.5)
  15. rs.setOutput("right", false)
Add Comment
Please, Sign In to add comment