blob: d9bfcea07758567bf1dc2acb26f089eb5f61839b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
(
(let output5 (block '(
(let row (Struct))
(let row (AddMember row 'x (Int64 '1)))
(let row (AddMember row 'y (Int64 '2)))
(let row (AddMember row 'z (Int64 '3)))
(let insert1_output (AsList row))
(return insert1_output)
)
))
(let sink (DataSink 'yt 'plato))
(let world (Write! world sink (Key '('table (String 'Output))) output5 '('('mode 'append))))
(let world (Commit! world sink))
(return world)
)
|