InsideOptLiteral.yqls 268 B

12345678910
  1. (
  2. (let config (DataSource 'config))
  3. (let res_sink (DataSink 'result))
  4. (let data (AsList (Just (Uint32 '12))))
  5. (let data (Append data (Just (Int64 '34))))
  6. (let world (Write! world res_sink (Key) data '('('type))))
  7. (let world (Commit! world res_sink))
  8. (return world)
  9. )