| author | Christian Urban <urbanc@in.tum.de> |
| Tue, 15 May 2018 01:14:07 +0100 | |
| changeset 174 | dd7acea3f9ec |
| 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)