123456789101112131415161718192021222324 |
- (
- #comment
- (let config (DataSource 'config))
- (let res_sink (DataSink 'result))
- (let t '(
- (String 'aaa)
- (Just (Uint32 '4))
- (Nothing (OptionalType (DataType 'Uint32)))
- ))
- (let jt (Just t))
- (let n (Nothing (TypeOf jt)))
- (let world (Write! world res_sink (Key) (Nth t '0) '()))
- (let world (Write! world res_sink (Key) (Nth jt '0) '()))
- (let world (Write! world res_sink (Key) (Nth jt '1) '()))
- (let world (Write! world res_sink (Key) (Nth jt '2) '()))
- (let world (Write! world res_sink (Key) (Nth n '0) '()))
- (let world (Write! world res_sink (Key) (Nth n '2) '()))
- (let world (Commit! world res_sink))
- (return world)
- )
|