blob: 89e18df9102b4eefc737ed2e98fca404d430962b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
(
(let config (DataSource 'config))
(let world (Configure! world config 'PureDataSource 'yt))
(let data (Length (List (ListType (DataType 'String)) (String 'a) (String 'b))))
(let res_sink (DataSink 'result))
(let world (Write! world res_sink
(Key)
data '()))
(let world (Commit! world res_sink))
(return world)
)
|