( #comment (let config (DataSource 'config)) (let res_sink (DataSink 'result)) (let list1 (AsList (String 'a) (String 'b) (String 'c))) (let map (Map list1 (lambda '(x) (Uint32 '1)))) (let data (Fold map (Uint32 '0) (lambda '(item state) (+ item state)))) (let world (Write! world res_sink (Key) data '('('type)))) (let world (Commit! world res_sink)) (return world) )