| author | pdated |
| Sat, 16 Jun 2018 20:54:58 +0100 | |
| changeset 184 | 19b1e01054f6 |
| 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)