| author | Christian Urban <christian dot urban at kcl dot ac dot uk> | 
| Wed, 25 Jan 2017 14:51:09 +0000 | |
| changeset 106 | f4cd56d9cd4f | 
| 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)