blob: 2de7c5efe9ab8dfd73ff495eda86c364b6ee773b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
(
(let config (DataSource 'config))
(let world (Configure! world config 'PureDataSource 'yt))
(let res_sink (DataSink 'result))
(let data (Substring (String 'abcde) (Int64 '2) (Uint64 '1)))
(let world (Write! world res_sink (Key) data '('('type))))
(let world (Commit! world res_sink))
(return world)
)
|