IfOverNotPredicate.yqls 282 B

12345678910
  1. (
  2. #comment
  3. (let config (DataSource 'config))
  4. (let res_sink (DataSink 'result))
  5. (let data (If (Not (ListHas (AsList (Uint32 '1)) (Uint32 '1))) (String 'a) (String 'b)))
  6. (let world (Write! world res_sink (Key) data '('('type))))
  7. (let world (Commit! world res_sink))
  8. (return world)
  9. )