blob: b1a80a56603d0d64d05abcc3f9bf0ed6216ae09c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
(
#comment
(let config (DataSource 'config))
(let x (Read! world config (Key '('data_sinks)) '() '()))
(let world (Left! x))
(let data (Right! x))
(let res_sink (DataSink 'result))
(let world (Write! world res_sink (Key) data '()))
(let world (Commit! world res_sink))
(return world)
)
|