blob: 0f09553c83ff662b6e483566495f7b3d5f303d51 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
(
#comment
(let config (DataSource 'config))
(let world (Configure! world config 'PureDataSource 'yt))
(let res_sink (DataSink 'result))
(let data (Apply (Udf 'SimpleUdf.Echo) (String 'abc)))
(let world (Write! world res_sink (Key) data '('('type))))
(let world (Commit! world res_sink))
(return world)
)
|