Shift.yqls 1.0 KB

123456789101112131415161718192021222324
  1. (
  2. (let config (DataSource 'config))
  3. (let res_sink (DataSink 'result))
  4. (let data (ShiftLeft (Int32 '"1") (Int64 '"10")))
  5. (let world (Write! world res_sink (Key) data '('('type))))
  6. (let data (ShiftLeft (Int64 '"1") (Int64 '"10")))
  7. (let world (Write! world res_sink (Key) data '('('type))))
  8. (let data (ShiftLeft (Int32 '"1") (Int64 '"40")))
  9. (let world (Write! world res_sink (Key) data '('('type))))
  10. (let data (ShiftLeft (Int64 '"1") (Int64 '"40")))
  11. (let world (Write! world res_sink (Key) data '('('type))))
  12. (let world (Commit! world res_sink))
  13. (let data (ShiftLeft (Just (Int32 '"1")) (Int64 '"10")))
  14. (let world (Write! world res_sink (Key) data '('('type))))
  15. (let data (ShiftLeft (Just (Int64 '"1")) (Int64 '"10")))
  16. (let world (Write! world res_sink (Key) data '('('type))))
  17. (let data (ShiftLeft (Just (Int32 '"1")) (Int64 '"40")))
  18. (let world (Write! world res_sink (Key) data '('('type))))
  19. (let data (ShiftLeft (Just (Int64 '"1")) (Int64 '"40")))
  20. (let world (Write! world res_sink (Key) data '('('type))))
  21. (let world (Commit! world res_sink))
  22. (return world)
  23. )