Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. import groovy.time.*
  2.  
  3. def startTime = new Date()
  4. sleep(200)
  5. def endTime = new Date()
  6.  
  7. use (TimeCategory) {
  8. TimeDuration duration = endTime - startTime
  9. println "Milliseconds duration: ${duration.millis}"
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement