| author | Christian Urban <christian.urban@kcl.ac.uk> |
| Mon, 10 Nov 2025 14:17:40 +0000 | |
| changeset 495 | b195fac1903c |
| parent 491 | 2a30c7dfe3ed |
| permissions | -rw-r--r-- |
import scala.concurrent._ import scala.concurrent.duration._ import ExecutionContext.Implicits.global import scala.language.postfixOps def urbanmain() = { lazy val f = Future { assert(C1.last_odd(113) == 85) assert(C1.last_odd(84) == 21) assert(C1.last_odd(605) == 341) } Await.result(f, 32 second) }