blob: e5dc7a8838d162cdcc3b914a5c716df7792058f9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
(
(let mr_source (DataSource 'yt 'plato))
(let res_sink (DataSink 'result))
(let x (Read! world mr_source (Key
'('table (String 'Input))
'('view (String 'my))
) (Void) '()))
(let world (Left! x))
(let data (Right! x))
(let world (Write! world res_sink (Key) data '()))
(let world (Commit! world res_sink))
(return world)
)
|