blob: 1a7772c21ffb2f655c666194912113450bb33ac1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
(
#comment
(let mr_source (DataSource 'yt 'plato))
(let x (Read! world mr_source (Key '('table (String 'Input))) '('key 'subkey 'value) '()))
(let world (Left! x))
(let table1 (Right! x))
(let table1 (Skip table1 (Uint64 '1)))
(let table1 (Take table1 (Uint64 '2)))
(let res_sink (DataSink 'result))
(let world (Write! world res_sink (Key) table1 '()))
(let world (Commit! world res_sink))
(return world)
)
|