Skip to content

Instantly share code, notes, and snippets.

@razie
Created July 11, 2011 15:34
Show Gist options
  • Save razie/1076105 to your computer and use it in GitHub Desktop.
Save razie/1076105 to your computer and use it in GitHub Desktop.
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