PureList.yqls 224 B

123456789
  1. (
  2. #comment
  3. (let config (DataSource 'config))
  4. (let res_sink (DataSink 'result))
  5. (let data (AsList (Uint32 '1)))
  6. (let world (Write! world res_sink (Key) data '('('type))))
  7. (let world (Commit! world res_sink))
  8. (return world)
  9. )