Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function c()
- term.clear()
- term.setCursorPos(1,1)
- end
- c()
- print("Constant Clock - by Rednet Works")
- sleep(2)
- c()
- function clock()
- while true do
- sleep(0.003)
- nTime = os.time()
- print( textutils.formatTime(nTime, false) )
- sleep(0.003)
- c()
- clock()
- end
- end
- clock()
Add Comment
Please, Sign In to add comment