- (
- (let config (DataSource 'config))
- (let res_sink (DataSink 'result))
- (let data (AsList (AsStruct '('x (Uint32 '12)))))
- (let data (Append data (AsStruct '('x (Int64 '34)))))
- (let st (StructType '('x (DataType 'Int64))))
- (let data (Append data (Struct st '('x (Int64 '56)))))
- (let world (Write! world res_sink (Key) data '('('type))))
- (let world (Commit! world res_sink))
- (return world)
- )
|