previous | top | next

Advanced structured concurrency: "@" ("Alt") operator

      Expr1 @ Expr2 @ ... @ ExprN
      function get_cnn_feed() { ... }
      function get_bbc_feed() { ... }
      function send_mail() { ... }

      send_mail(get_cnn_feed() @ get_bbc_feed(), 
                "alex@croczilla.com");

High-level concurrency for JS - http://www.croczilla.com/stratified