Advertisement
Guest User

Untitled

a guest
Sep 2nd, 2020
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. -- Feahren
  2. local minutes = 1
  3.  
  4. for iteration = (minutes * 60), 0, -1 do
  5. print(("%02d:%02d"):format(math.floor(iteration / 60), iteration % 60))
  6. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement