Guest User

Untitled

a guest
Jun 23rd, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. fun startHere() {
  2. doAnything {
  3. System.out.println("Do something before 2nd thing")
  4. }
  5. }
  6.  
  7. fun doAnything(block: () -> Unit) {
  8. System.out.println("Do 1st thing")
  9. block()
  10. System.out.println("Do 2nd thing")
  11. }
Add Comment
Please, Sign In to add comment