Guest User

Untitled

a guest
Jan 23rd, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. fun downToLoop() {
  2. val employees = createEmployees()
  3. for(counter in employees.size -1 downTo 0)
  4. println("${employees.get(counter).name} is present")
  5. }
  6. //Bill is present
  7. //Susan is present
  8. //null is present
  9. //null is present
  10. //Busiswe is present
  11. //Bongani is present
Add Comment
Please, Sign In to add comment