blob: 90563d41a310d9868337ccac36d7c00ef536d7e4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
(
(let mr_source (DataSource 'yt 'plato))
(let x (Read! world mr_source
(Key '('table (String 'Input)))
(Void) '()))
(let world (Left! x))
(let table1 (Right! x))
(let table1 (Map table1 (lambda '(x) '(x (String 'qwe)))))
(let table1len (Length table1))
(let res_sink (DataSink 'result))
(let world (Write! world res_sink
(Key)
table1len '()))
(let world (Commit! world res_sink))
(return world)
)
|