123456789101112131415161718192021222324 |
- (
- #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 table1map (FlatMap table1 (lambda '(item) (block '(
- (let value (Member item 'value))
- (let newValue (AsList (Exists (FromString (String 'zzz) 'Int32))))
- (let newValue (Append newValue (Exists (FromString (String '3456) 'Int32))))
- (let newValue (Append newValue (Exists (String 'zzz))))
- (let ret (Map newValue (lambda '(item) (block '(
- (let s (Struct))
- (let s (AddMember s 'key (String '.)))
- (let s (AddMember s 'subkey (String '.)))
- (let s (AddMember s 'value (ToString item)))
- (return s))))))
- (return ret)
- )))))
- (let mr_sink (DataSink 'yt (quote plato)))
- (let world (Write! world mr_sink (Key '('table (String 'Output))) table1map '('('mode 'append))))
- (let world (Commit! world mr_sink))
- (return world)
- )
|