SeveralWritesAndCommits.yqls 504 B

1234567891011121314
  1. (
  2. (let config (DataSource 'config))
  3. (let res_sink (DataSink 'result))
  4. (let world (Write! world res_sink (Key) (Int32 '1) '()))
  5. (let world (Write! world res_sink (Key) (Int32 '2) '()))
  6. (let world (Write! world res_sink (Key) (Int32 '3) '()))
  7. (let world (Commit! world res_sink))
  8. (let world (Write! world res_sink (Key) (Int32 '4) '()))
  9. (let world (Write! world res_sink (Key) (Int32 '5) '()))
  10. (let world (Write! world res_sink (Key) (Int32 '6) '()))
  11. (let world (Commit! world res_sink))
  12. (return world)
  13. )