Created
July 11, 2011 15:34
-
-
Save razie/1076105 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import razie.wfs._ | |
val workflow = wfs strict seq { | |
par { | |
seq { | |
println ("he he - definition time") | |
later { _ + "runtime-a" } | |
} | |
later { _ + "runtime-b" } | |
} | |
sort[String] (_ < _) | |
matchLater { case x : List[String] => x mkString "," } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment