Guest User

Untitled

a guest
Feb 17th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. fun profile(f: () -> Unit) {
  2. val t1 = System.currentTimeMillis()
  3. f()
  4. val t2 = System.currentTimeMillis()
  5. println("Delta: ${t2 - t1}")
  6. }
  7.  
  8. fun myFunction():Unit {
  9. slowQuery(47)
  10. }
  11.  
  12. fun main() {
  13. profile(::myFunction)
  14. }
Add Comment
Please, Sign In to add comment