author | Christian Urban <urbanc@in.tum.de> |
Wed, 28 Nov 2018 23:26:47 +0000 | |
changeset 220 | 3020f8c76baa |
parent 92 | cfff88de2ff5 |
permissions | -rw-r--r-- |
import scala.concurrent._ import scala.concurrent.duration._ import ExecutionContext.Implicits.global import scala.language.postfixOps lazy val f = Future { assert(replace("aa".% | "bb", "aabbbaaaaaaabaaaaabbaaaabb" , "c") == "ccbcabcaccc") assert(replace("aa".% | "bb", "abba" , "") == "aa") } Await.result(f, 120 second)