( (let config (DataSource 'config)) (let list (AsList (String 'a) (String 'b) (String 'c))) (let data (Fold list (String 'z) (lambda '(item state) (Max state (String 'y))))) (let res_sink (DataSink 'result)) (let world (Write! world res_sink (Key) data '('('type)))) (let world (Commit! world res_sink)) (return world) )