- (
- #comment
- (let config (DataSource 'config))
- (let res_sink (DataSink 'result))
- (let list (AsList (String 'aaa) (String 'bbb) (String 'ccc)))
- (let world (Write! world res_sink (Key) (Collect (Iterator list)) '('('type))))
- (let world (Write! world res_sink (Key) (Collect (Collect (LazyList (LazyList (Collect list))))) '('('type))))
- (let world (Commit! world res_sink))
- (return world)
- )
|