( (let config (DataSource 'config)) (let res_sink (DataSink 'result)) (let optBool1 (== (Int32 '0) (/ (Int32 '3) (Int32 '2)))) (let optBool2 (== (Int32 '0) (/ (Int32 '4) (Int32 '5)))) (let data (Coalesce (Or optBool1 optBool2) (Bool 'false))) (let world (Write! world res_sink (Key) data '('('type)))) (let world (Commit! world res_sink)) (return world) )