blob: 1e36b20260142bfe8e9d839c09efa933a4e54a58 (
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 (AsList (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)
)
|