blob: 00b54a587d4f24a556260a1e82f0b2f197aa5e7c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
(
(let config (DataSource 'config))
(let list (AsList (String 'a) (String 'b) (String 'c)))
(let data (Fold list
(String 'z)
(lambda '(item state) (Min 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)
)
|