Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as Scala by s ( 16 years ago )
def wait_js(iNum: Int, t: Int, func: () => Boolean): Boolean ={
Thread.sleep(t)
val p = func()
if(iNum <= 0 || p == true)
p
else
wait_js(iNum - 1, t, func)
} /* end of method wait_js */
Revise this Paste