123456789101112131415161718 |
- (
- #comment
- (let config (DataSource 'config))
- (let res_sink (DataSink 'result))
- (let world (Write! world res_sink (Key) (StringContains (Utf8 '12345) (String '"")) '('('type))))
- (let world (Write! world res_sink (Key) (StringContains (Just (String '12345)) (String '346)) '('('type))))
- (let world (Write! world res_sink (Key) (StringContains (String '12345) (Just (String '012345))) '('('type))))
- (let world (Write! world res_sink (Key) (StringContains (Just (String '567)) (Just (Utf8 '67))) '('('type))))
- (let world (Write! world res_sink (Key) (StringContains (Utf8 'abcad) (String 'bc)) '('('type))))
- (let world (Write! world res_sink (Key) (StringContains (Utf8 'xyz) (Utf8 'xyz)) '('('type))))
- (let world (Write! world res_sink (Key) (StringContains (Utf8 'one) (Null)) '('('type))))
- (let world (Write! world res_sink (Key) (StringContains (Null) (Utf8 'two)) '('('type))))
- (let world (Commit! world res_sink))
- (return world)
- )
|