Advertisement
LDDestroier

Get character draw speed (CC)

May 11th, 2016
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.19 KB | None | 0 0
  1. local margin = 70000
  2. local char = "01"
  3. local spaces = string.rep(char,margin)
  4. local t1 = os.time()*50
  5. write(spaces)
  6. local t2 = os.time()*50
  7. term.clear()
  8. print((margin/(t2-t1))*#char.." c/s")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement