Bohtvaroh

Blogger - FPOWJPWB - Retry in Scala (test)

Jul 27th, 2012
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scala 0.19 KB | None | 0 0
  1. object RetryTest extends App {
  2.   val random = new Random
  3.   retry(
  4.     () => {val n = random.nextInt(5); println(n); n},
  5.     (n: Int) => n == 0,
  6.     () => println("re-trying"),
  7.     5
  8.   )
  9. }
Advertisement
Add Comment
Please, Sign In to add comment